/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4F46E5;
    --secondary-color: #10B981;
    --danger-color: #EF4444;
    --warning-color: #F59E0B;
    --dark-bg: #1F2937;
    --light-bg: #F9FAFB;
    --text-dark: #111827;
    --text-light: #6B7280;
    --border-color: #E5E7EB;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header - Styles déplacés vers navigation.css */
/* Les styles de navigation sont maintenant dans assets/css/navigation.css */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Cards */
.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.card-header {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #4338CA;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-success {
    background-color: var(--secondary-color);
    color: white;
}

.btn-success:hover {
    background-color: #059669;
}

.btn-danger {
    background-color: var(--danger-color);
    color: white;
}

.btn-danger:hover {
    background-color: #DC2626;
}

.btn-warning {
    background-color: var(--warning-color);
    color: white;
}

.btn-warning:hover {
    background-color: #D97706;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #D1FAE5;
    color: #065F46;
    border-left: 4px solid var(--secondary-color);
}

.alert-error {
    background-color: #FEE2E2;
    color: #991B1B;
    border-left: 4px solid var(--danger-color);
}

.alert-info {
    background-color: #DBEAFE;
    color: #1E40AF;
    border-left: 4px solid var(--primary-color);
}

.alert-warning {
    background-color: #FEF3C7;
    color: #92400E;
    border-left: 4px solid var(--warning-color);
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

table th,
table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table th {
    background-color: var(--light-bg);
    font-weight: 600;
    color: var(--text-dark);
}

table tr:hover {
    background-color: var(--light-bg);
}

/* Grid */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Game Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.game-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card-body {
    padding: 1.5rem;
}

.game-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.game-card-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Leaderboard */
.leaderboard {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.leaderboard-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.leaderboard-item:last-child {
    border-bottom: none;
}

.leaderboard-rank {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    width: 50px;
}

.leaderboard-rank.first {
    color: #FFD700;
}

.leaderboard-rank.second {
    color: #C0C0C0;
}

.leaderboard-rank.third {
    color: #CD7F32;
}

.leaderboard-user {
    flex: 1;
    font-weight: 500;
}

.leaderboard-score {
    font-weight: bold;
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .container {
        padding: 1rem;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.hidden {
    display: none !important;
}

/* ===== AMÉLIORATIONS INTERFACE V6 ===== */

/* Info Card (Comment ça marche) */
.info-card {
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.15);
}

.info-card ol li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

/* Button Large */
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Games Carousel */
.games-carousel {
    min-height: 400px;
    position: relative;
}

.game-slide {
    transition: opacity 0.4s ease-in-out;
}

.game-showcase {
    background: linear-gradient(135deg, #f6f8fb 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 2.5rem;
    border: 2px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.game-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.game-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.game-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
}

.game-showcase-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.game-showcase-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

.info-box:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-box strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.info-box p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.game-showcase-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.game-showcase-actions .btn {
    flex: 1;
    min-width: 200px;
    text-align: center;
    justify-content: center;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.carousel-btn:hover {
    background: #4338CA;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-indicators {
    display: flex;
    gap: 0.75rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot:hover {
    background: var(--text-light);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.card {
    animation: fadeIn 0.5s ease-out;
}

.stat-card {
    animation: fadeIn 0.5s ease-out;
    animation-fill-mode: both;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive improvements */
@media (max-width: 768px) {
    .game-showcase {
        padding: 1.5rem;
    }

    .game-showcase-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .game-showcase-actions {
        flex-direction: column;
    }

    .game-showcase-actions .btn {
        width: 100%;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .info-box {
        flex-direction: column;
        text-align: center;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ===== AUTH PAGES DESIGN ===== */

/* Auth Card */
.auth-card {
    max-width: 500px;
    margin: 2rem auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem 2.5rem;
    animation: fadeIn 0.5s ease-out;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    animation: scaleIn 0.6s ease-out;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.auth-header h2 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.8rem;
}

.auth-header p {
    margin: 0;
    color: var(--text-light);
    font-size: 1rem;
}

/* Label with icon */
.label-icon {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Password input wrapper */
.password-input-wrapper {
    position: relative;
}

.password-input-wrapper input {
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem 0.5rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.toggle-password:hover {
    opacity: 1;
}

/* Password strength indicator */
.password-strength {
    margin-top: 0.5rem;
}

.strength-bar {
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.strength-fill {
    height: 100%;
    transition: width 0.3s, background-color 0.3s;
    border-radius: 2px;
}

.strength-text {
    font-size: 0.85rem;
    font-weight: 500;
}

.strength-weak .strength-fill {
    width: 33%;
    background: var(--danger-color);
}

.strength-weak .strength-text {
    color: var(--danger-color);
}

.strength-medium .strength-fill {
    width: 66%;
    background: var(--warning-color);
}

.strength-medium .strength-text {
    color: var(--warning-color);
}

.strength-strong .strength-fill {
    width: 100%;
    background: var(--secondary-color);
}

.strength-strong .strength-text {
    color: var(--secondary-color);
}

/* Password match indicator */
.password-match {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

.password-match.match {
    background: #D1FAE5;
    color: #065F46;
}

.password-match.no-match {
    background: #FEE2E2;
    color: #991B1B;
}

/* Form hint */
.form-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Auth divider */
.auth-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    position: relative;
    background: white;
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Link primary */
.link-primary {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.link-primary:hover {
    color: #4338CA;
    text-decoration: underline;
}

/* Button loader */
.btn-loader {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Additional variables needed */
:root {
    --success-color: var(--secondary-color);
    --info-color: var(--primary-color);
    --background-color: var(--light-bg);
    --info-light: #DBEAFE;
    --text-color: var(--text-dark);
}

/* Toast notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    animation: slideInRight 0.4s ease-out;
    min-width: 300px;
    max-width: 500px;
}

.toast-success {
    border-left: 4px solid var(--secondary-color);
}

.toast-error {
    border-left: 4px solid var(--danger-color);
}

.toast-info {
    border-left: 4px solid var(--primary-color);
}

.toast-warning {
    border-left: 4px solid var(--warning-color);
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Responsive auth */
@media (max-width: 768px) {
    .auth-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .auth-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .toast {
        right: 10px;
        left: 10px;
        min-width: auto;
    }
}

/* ===== PROFILE PAGE ===== */

.stats-grid-profile {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-card-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-content .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-content .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* ===== HISTORY PAGE ===== */

.transaction-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.transaction-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.transaction-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.transaction-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.transaction-details {
    flex: 1;
}

.transaction-type {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.transaction-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.transaction-amount {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: right;
    min-width: 100px;
}

.transaction-amount.positive {
    color: var(--secondary-color);
}

.transaction-amount.negative {
    color: var(--danger-color);
}

.transaction-status {
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.transaction-status.completed {
    background: #D1FAE5;
    color: #065F46;
}

.transaction-status.pending {
    background: #FEF3C7;
    color: #92400E;
}

.transaction-status.rejected {
    background: #FEE2E2;
    color: #991B1B;
}

/* Filter buttons */
.filter-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.95rem;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-text {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Responsive profile & history */
@media (max-width: 768px) {
    .transaction-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .transaction-amount {
        text-align: left;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }
}

/* ===== BUY CREDITS PAGE ===== */

.quick-amounts {
    margin-bottom: 2rem;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.amount-btn {
    position: relative;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.amount-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.2);
    border-color: var(--primary-color);
}

.amount-btn.selected {
    background: linear-gradient(135deg, var(--primary-color), #4338CA);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.amount-btn.selected .amount-value,
.amount-btn.selected .amount-games {
    color: white;
}

.amount-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.amount-games {
    font-size: 0.9rem;
    color: var(--text-light);
}

.amount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--warning-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.amount-badge.best {
    background: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.divider-with-text {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.divider-with-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.divider-with-text span {
    position: relative;
    background: white;
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stripe-card-element {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: white;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.stripe-card-element:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* ===== WITHDRAW PAGE ===== */

.withdraw-method {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, white 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.withdraw-method:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.withdraw-info-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.withdraw-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 10px;
    flex-shrink: 0;
}

.withdrawal-pending {
    background: #FEF3C7;
    border-left: 4px solid var(--warning-color);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.withdrawal-pending-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #92400E;
    margin-bottom: 0.5rem;
}

.withdrawal-pending-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(146, 64, 14, 0.2);
}

.withdrawal-pending-item:last-child {
    border-bottom: none;
}

/* Responsive buy/withdraw */
@media (max-width: 768px) {
    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amount-btn {
        padding: 1rem 0.75rem;
    }

    .amount-value {
        font-size: 1.5rem;
    }
}
/**
 * Navigation Styles - Design professionnel et moderne
 * Version premium pour Skill Game Platform
 * Version 3.0 - Styles corrigés et optimisés
 */

/* ============================================
   HEADER PRINCIPAL - DESIGN PREMIUM
   ============================================ */
.main-header {
    background: linear-gradient(135deg, #1a1f36 0%, #0f1420 100%);
    backdrop-filter: blur(10px);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(79, 70, 229, 0.2);
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--primary-color) 25%,
        var(--secondary-color) 50%,
        var(--primary-color) 75%,
        transparent 100%);
    opacity: 0.6;
}

.main-header.scrolled {
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.2),
        0 12px 24px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    background: linear-gradient(135deg, #1a1f36 0%, #0f1420 100%);
}

.main-header.admin-header {
    background: linear-gradient(135deg, #7C2D12 0%, #431407 100%);
    border-bottom: 2px solid var(--warning-color);
}

.main-header.admin-header::before {
    background: linear-gradient(90deg,
        transparent 0%,
        var(--warning-color) 25%,
        #fbbf24 50%,
        var(--warning-color) 75%,
        transparent 100%);
}

/* ============================================
   NAVIGATION CONTAINER
   ============================================ */
.main-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 75px;
    position: relative;
}

/* ============================================
   LOGO / BRAND - DESIGN PREMIUM
   ============================================ */
.nav-brand {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.nav-logo {
    font-size: 1.85rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #06d6a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: -0.8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.nav-logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo:hover::after {
    transform: scaleX(1);
}

.nav-logo:hover {
    background: linear-gradient(135deg, #06d6a0 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-1px);
}

.nav-logo-admin {
    background: linear-gradient(135deg, var(--warning-color) 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo-admin::after {
    background: linear-gradient(90deg, var(--warning-color), transparent);
}

.nav-logo-admin:hover {
    background: linear-gradient(135deg, #fbbf24 0%, var(--warning-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   MENU PRINCIPAL - DESIGN PREMIUM
   ============================================ */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 0.35rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

/* ============================================
   LIENS DE NAVIGATION - EFFET GLASSMORPHISM
   ============================================ */
.nav-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.7rem 1.35rem;
    font-weight: 600;
    font-size: 0.925rem;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(16, 185, 129, 0.15);
}

.nav-link.active {
    background: linear-gradient(135deg,
        rgba(79, 70, 229, 0.9) 0%,
        rgba(67, 56, 202, 0.9) 100%);
    color: white;
    box-shadow:
        0 4px 12px rgba(79, 70, 229, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transform: translateY(-1px);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px 2px 0 0;
}

.admin-header .nav-link.active {
    background: linear-gradient(135deg,
        rgba(245, 158, 11, 0.9) 0%,
        rgba(217, 119, 6, 0.9) 100%);
    box-shadow:
        0 4px 12px rgba(245, 158, 11, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.admin-header .nav-link.active::after {
    background: #fbbf24;
}

/* ============================================
   BOUTONS SPÉCIAUX - DESIGN PREMIUM
   ============================================ */
.nav-btn {
    padding: 0.7rem 1.75rem;
    font-weight: 700;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.nav-btn-outline {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.nav-btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.nav-btn-outline:hover::before {
    width: 300px;
    height: 300px;
}

.nav-btn-outline:hover {
    border-color: var(--secondary-color);
    background: rgba(16, 185, 129, 0.15);
    color: var(--secondary-color);
    box-shadow:
        0 4px 12px rgba(16, 185, 129, 0.3),
        0 0 20px rgba(16, 185, 129, 0.1);
}

.nav-btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #059669 100%);
    color: white;
    box-shadow:
        0 4px 12px rgba(16, 185, 129, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    border: none;
}

.nav-btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.nav-btn-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-3px);
    box-shadow:
        0 6px 20px rgba(16, 185, 129, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

/* ============================================
   LIEN ADMIN - STYLE PREMIUM
   ============================================ */
.nav-admin {
    color: var(--warning-color);
    font-weight: 700;
    border: 2px solid rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg,
        rgba(245, 158, 11, 0.15) 0%,
        rgba(217, 119, 6, 0.15) 100%);
    position: relative;
    overflow: hidden;
}

.nav-admin::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(245, 158, 11, 0.3),
        transparent);
    transition: left 0.6s ease;
}

.nav-admin:hover::before {
    left: 100%;
}

.nav-admin:hover {
    background: linear-gradient(135deg,
        var(--warning-color) 0%,
        #d97706 100%);
    color: white;
    border-color: var(--warning-color);
    transform: translateY(-2px);
    box-shadow:
        0 4px 16px rgba(245, 158, 11, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* ============================================
   LIENS SPÉCIAUX ADMIN
   ============================================ */
.nav-divider {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.nav-divider::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 50%;
    background: linear-gradient(to bottom,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
}

.nav-back {
    color: #93C5FD;
    background: rgba(147, 197, 253, 0.1);
    border: 1px solid rgba(147, 197, 253, 0.3);
}

.nav-back:hover {
    color: #60A5FA;
    background: rgba(96, 165, 250, 0.2);
    border-color: #60A5FA;
    box-shadow:
        0 4px 12px rgba(96, 165, 250, 0.3),
        0 0 20px rgba(96, 165, 250, 0.15);
}

.nav-logout {
    color: #FCA5A5;
    background: rgba(252, 165, 165, 0.1);
    border: 1px solid rgba(252, 165, 165, 0.3);
}

.nav-logout:hover {
    color: white;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    border-color: #EF4444;
    box-shadow:
        0 4px 12px rgba(239, 68, 68, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* ============================================
   MENU DÉROULANT (DROPDOWN) - DESIGN PREMIUM
   ============================================ */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    cursor: pointer;
    user-select: none;
}

.nav-dropdown-arrow {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.7rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: linear-gradient(135deg, #1a1f36 0%, #0f1420 100%);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 0 30px rgba(79, 70, 229, 0.1);
    min-width: 240px;
    padding: 0.75rem 0;
    margin-top: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #1a1f36 0%, #0f1420 100%);
    border-left: 1px solid rgba(79, 70, 229, 0.2);
    border-top: 1px solid rgba(79, 70, 229, 0.2);
    transform: rotate(45deg);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nav-dropdown-item {
    margin: 0.15rem 0.5rem;
}

.nav-dropdown-link {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0.85rem 1.25rem;
    font-weight: 600;
    font-size: 0.925rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.nav-dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--secondary-color);
    transition: height 0.3s ease;
    border-radius: 0 2px 2px 0;
}

.nav-dropdown-link:hover::before {
    height: 70%;
}

.nav-dropdown-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--secondary-color);
    transform: translateX(5px);
    padding-left: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-dropdown-link.active {
    background: linear-gradient(135deg,
        rgba(79, 70, 229, 0.25) 0%,
        rgba(67, 56, 202, 0.25) 100%);
    color: var(--secondary-color);
    border-left: 3px solid var(--secondary-color);
    padding-left: 1.5rem;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

.nav-dropdown-logout {
    color: #FCA5A5;
}

.nav-dropdown-logout::before {
    background: #EF4444;
}

.nav-dropdown-logout:hover {
    background: linear-gradient(135deg,
        rgba(239, 68, 68, 0.2) 0%,
        rgba(220, 38, 38, 0.2) 100%);
    color: #EF4444;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.nav-dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent);
    margin: 0.75rem 1rem;
    border: none;
}

/* ============================================
   LANGUAGE SELECTOR - STYLE D'ORIGINE CONSERVÉ
   ============================================ */
.nav-language {
    display: flex;
    align-items: center;
}

/* Le sélecteur de langue garde son style d'origine défini dans language_selector.php */

/* ============================================
   BOUTON LOGIN COULEUR PRIMAIRE (BLEU/VIOLET)
   ============================================ */
.nav-btn-outline.nav-btn-login {
    border-color: rgba(79, 70, 229, 0.4) !important;
    background: rgba(79, 70, 229, 0.1) !important;
    color: #8B5CF6 !important;
}

.nav-btn-outline.nav-btn-login::before {
    background: rgba(79, 70, 229, 0.15) !important;
}

.nav-btn-outline.nav-btn-login:hover {
    border-color: var(--primary-color) !important;
    background: rgba(79, 70, 229, 0.2) !important;
    color: var(--primary-color) !important;
    box-shadow:
        0 4px 12px rgba(79, 70, 229, 0.3),
        0 0 20px rgba(79, 70, 229, 0.15) !important;
}

/* ============================================
   RESPONSIVE DESIGN - OPTIMISÉ
   ============================================ */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 0.25rem;
    }

    .nav-link {
        padding: 0.65rem 1.1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .main-nav {
        padding: 0 1.5rem;
        flex-wrap: wrap;
    }

    .nav-logo {
        font-size: 1.65rem;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        margin-top: 1.25rem;
        padding-top: 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 768px) {
    .main-header::before {
        height: 1px;
    }

    .main-nav {
        min-height: auto;
        padding: 1rem;
        flex-direction: column;
        gap: 1.25rem;
    }

    .nav-brand {
        width: 100%;
        text-align: center;
    }

    .nav-logo {
        font-size: 1.6rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.65rem;
        width: 100%;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 0.85rem 1.5rem;
    }

    .nav-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.75rem;
        box-shadow:
            0 4px 12px rgba(0, 0, 0, 0.3),
            0 0 0 1px rgba(255, 255, 255, 0.08) inset;
        border: 1px solid rgba(79, 70, 229, 0.3);
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown-link {
        padding: 0.85rem 1.5rem;
    }

    .nav-dropdown-link:hover {
        transform: translateX(0);
        padding-left: 1.75rem;
    }

    .nav-divider {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 2px solid rgba(255, 255, 255, 0.15);
        padding-top: 0.75rem;
        margin-top: 0.5rem;
    }

    .nav-divider::before {
        display: none;
    }

    .nav-language .language-selector {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ============================================
   ANIMATIONS PREMIUM
   ============================================ */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow:
            0 4px 12px rgba(79, 70, 229, 0.4),
            0 2px 4px rgba(0, 0, 0, 0.2),
            0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    }
    50% {
        box-shadow:
            0 4px 20px rgba(79, 70, 229, 0.6),
            0 2px 6px rgba(0, 0, 0, 0.3),
            0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    }
}

.nav-dropdown:hover .nav-dropdown-menu {
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link.active {
    animation: fadeInScale 0.3s ease;
}

/* ============================================
   ACCESSIBILITÉ AMÉLIORÉE
   ============================================ */
.nav-link:focus,
.nav-dropdown-link:focus,
.nav-language .language-selector:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 3px;
}

.nav-link:focus-visible,
.nav-dropdown-link:focus-visible {
    box-shadow:
        0 0 0 3px rgba(16, 185, 129, 0.3),
        0 4px 12px rgba(16, 185, 129, 0.2);
}

/* Réduction des animations pour les utilisateurs qui préfèrent moins de mouvement */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .nav-link:hover,
    .nav-dropdown-link:hover {
        transform: none;
    }
}

/* ============================================
   SCROLL BEHAVIOR PREMIUM
   ============================================ */
.main-header.scrolled {
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.main-header.scrolled .nav-logo {
    transform: scale(0.95);
}

/* ============================================
   EFFETS SUPPLÉMENTAIRES
   ============================================ */

/* Effet de particules sur le header */
.main-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(79, 70, 229, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0.5;
}

/* Hover state pour le brand */
.nav-brand:hover .nav-logo {
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.5));
}

/* Effet active plus visible */
.nav-link.active {
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Support du mode sombre système */
@media (prefers-color-scheme: dark) {
    .main-header {
        background: linear-gradient(135deg, #0a0f1e 0%, #05080f 100%);
    }
}
