/* --- ՀԻՄՆԱԿԱՆ --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
}

:root {
    --primary: #FF4D6D;
    --secondary: #00E5FF;
    --dark: #0F0C29;
    --darker: #0A081F;
    --light: #FFFFFF;
    --gray: #A0A0C0;
    --success: #00D68F;
    --warning: #FFAA00;
    --gradient-bg: linear-gradient(135deg, #0F0C29 0%, #1A1A3E 50%, #24245E 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    --radius: 20px;
}

body {
    background: var(--gradient-bg);
    color: var(--light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* --- HEADER & LOGO --- */
.main-header {
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(10px);
    padding: 4px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    height: 57px;
}

.header-inner {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
}

.header-logo {
    width: 75px;
    height: auto;
}

/* --- NAVIGATION --- */
.navigation {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navigation a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 5px 0;
    opacity: 0.9;
    transition: all 0.3s;
}

.navigation a:hover {
    opacity: 1;
    color: var(--primary);
}

.navigation a.active {
    color: var(--primary);
}

/* Action Button */
.action-btn {
    background: linear-gradient(45deg, var(--primary), #FF2A51);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(255, 77, 109, 0.3);
    transition: all 0.3s;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 77, 109, 0.4);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
    background: transparent;
    border: none;
    padding: 5px;
}

.mobile-timer-box {
    display: none;
}

/* --- HERO SECTION --- */
.hero-section {
    text-align: center;
    padding: 100px 20px 50px;
}

.main-title {
    font-size: clamp(2.5rem, 7vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 900;
    color: var(--light);
}

.main-title span {
    display: block;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: var(--primary);
    margin-top: 5px;
}

.hero-desc {
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
    color: var(--gray);
}

.hero-btn {
    background: linear-gradient(45deg, var(--primary), #FF2A51);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(255, 77, 109, 0.4);
    transition: all 0.3s;
    
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 77, 109, 0.5);
}

/* --- LIVE SECTION --- */
.live-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.video-container {
    background: rgba(0, 0, 0, 0.7);
    border-radius: var(--radius);
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.live-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #FF0000, #FF5555);
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    animation: pulse 1.5s infinite;
    z-index: 2;
}

.video-placeholder {
    text-align: center;
    z-index: 1;
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    display: block;
    color: var(--secondary);
}

/* Stats Card */
.stats-card {
    background: var(--gradient-card);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.stats-card h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.3rem;
    color: var(--secondary);
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stat-row i {
    font-size: 2rem;
    color: var(--primary);
    min-width: 30px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
    display: block;
    margin-bottom: 3px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light);
}

/* --- FEATURES GRID --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.f-card {
    background: var(--gradient-card);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.f-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.f-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: var(--secondary);
}

.f-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.f-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    color: var(--gray);
}

/* --- TICKET PAGE --- */
.page-container {
    flex: 1;
    padding: 90px 15px 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.ticket-card {
    background: white;
    color: #333;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px dashed #e0e0e0;
}

.ticket-header h2 {
    font-size: 1.5rem;
    color: var(--dark);
    font-weight: 800;
}

.draw-badge-unique {
    background: linear-gradient(45deg, #FFB100, #FFCC00);
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    border: 2px solid #fff;
    text-transform: uppercase;
}

/* Inputs Grid */
.inputs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.input-group label {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
    color: #555;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    background: #f9f9f9;
}

.input-group input:focus {
    border-color: var(--primary);
    background: white;
}

/* Tables */
.tables-wrapper {
    margin-bottom: 25px;
}

.lotto-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    table-layout: fixed;
}

.lotto-table td {
    border: 2px solid #222;
    height: 45px;
    padding: 0;
    text-align: center;
    background: white;
    width: 11.11%; /* 9 սյունակ, յուրաքանչյուրը ~11.11% */
}

.lotto-table span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 800;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s;
    color: #333;
    user-select: none;
}

.lotto-table span:hover:not(.disabled):not(.filled) {
    background: rgba(255, 77, 109, 0.1);
}

span.filled {
    background: #e0e0e0 !important;
    color: #000;
}

span.disabled {
    background: #ccc !important;
    opacity: 0.3;
    cursor: not-allowed;
}

/* Final Row */
.final-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px dashed #e0e0e0;
    flex-wrap: wrap;
    gap: 15px;
}

.confirm-btn {
    background: linear-gradient(45deg, var(--primary), #FF2A51);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 77, 109, 0.3);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 180px;
    justify-content: center;
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 77, 109, 0.4);
}

.id-display {
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    min-width: 200px;
    text-align: center;
}

.id-display span {
    color: var(--primary);
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 900;
}

/* --- POPUP --- */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.popup-box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.popup-box h4 {
    margin-bottom: 20px;
    color: var(--dark);
    font-size: 1.3rem;
    font-weight: 800;
}

.popup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 10px;
    margin: 20px 0;
    max-height: 280px;
    overflow-y: auto;
    padding: 10px;
}

.popup-grid span {
    height: 50px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    color: #333;
    transition: all 0.2s;
}

.popup-grid span:hover:not(:last-child) {
    background: var(--primary);
    color: white;
}

.popup-grid span:last-child {
    grid-column: span 2;
    background: #ff4d6d;
    color: white;
    margin-top: 10px;
}

/* --- FOOTER --- */
.site-footer {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.5);
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer p {
    margin-bottom: 20px;
    opacity: 0.8;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--primary);
}

/* --- ANIMATIONS --- */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .live-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-container {
        height: 280px;
    }
    
    .ticket-card {
        max-width: 95%;
    }
}

/* Tablet and Mobile Optimizations */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .navigation {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--darker);
        flex-direction: column;
        padding: 20px;
        align-items: center;
        gap: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }
    
    .navigation.active {
        display: flex;
    }
    
    .navigation a {
        font-size: 1.1rem;
        padding: 10px 0;
    }
    
    .header-right {
        display: none;
    }
@media (max-width: 768px) {
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    /* Լոգոն ձախ եզրին */
    .logo-area {
        flex-shrink: 0;
    }

    /* Կոճակները տեղադրվում են լոգոյի և բուրգերի միջև */
    .header-right {
        display: flex;
        align-items: center;
        gap: 12px;                /* կրճատված բացատ */
        margin-left: auto;
        margin-right: auto;
        padding: 0 5px;
        flex-shrink: 0;
    }

    /* Բուրգեր մենյուն աջ եզրին */
    .menu-toggle {
        flex-shrink: 0;
    }

    /* 1.5 անգամ փոքրացված կոճակների չափեր */
    .header-right .action-btn {
        padding: 8px 18px;       /* սկզբնական 10px 25px → մոտ 1.5x փոքր */
        font-size: 12px;         /* սկզբնական 15px → 10px, մի փոքր ավելի մեծ */
        border-radius: 40px;     /* համապատասխանաբար փոքրացված */
        gap: 6px;
    }

    /* Հեռացնել margin-left, որը կարող էր խանգարել */
    .header-right .action-btn:last-child {
        margin-left: 0 !important;
    }

    /* Նավիգացիան թաքցնել և ցուցադրել ակտիվ դեպքում */
    .navigation {
        width: 100%;
        display: none;
        order: 4;
    }

    .navigation.active {
        display: flex;
        flex-direction: column;
    }

    /* Համոզվել, որ կոճակները տեսանելի են */
    .header-right {
        display: flex !important;
    }
}
}
    .mobile-timer-box {
        display: block;
        background: rgba(0, 229, 255, 0.1);
        padding: 10px 15px;
        border-radius: 8px;
        margin-top: 15px;
        font-weight: 700;
        color: var(--secondary);
    }
    
    .ticket-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .final-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .confirm-btn, .id-display {
        width: 100%;
        min-width: auto;
    }
    
    .hero-section {
        padding: 100px 15px 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .inputs-grid {
        grid-template-columns: 1fr;
    }
    
    /* Ensure tables fit without horizontal scroll on tablets */
    .lotto-table {
        min-width: auto;
        width: 100%;
    }
    
    .table-scroll {
        overflow-x: visible;
        padding: 5px;
    }
    
    .lotto-table td {
        height: 40px;
        font-size: 0.9rem;
    }
    
    .lotto-table span {
        font-size: 1rem;
    }

/* Mobile Phones */
@media (max-width: 480px) {
    .ticket-card {
        padding: 20px 15px;
    }
    
    .draw-badge-unique {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
    
    .hero-btn, .action-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .main-title span {
        font-size: 1.5rem;
    }
    
    .popup-grid {
        grid-template-columns: repeat(auto-fill, minmax(45px, 1fr));
    }
    
    .popup-grid span {
        height: 45px;
        font-size: 1rem;
    }
}

/* Small Mobile Phones */
@media (max-width: 360px) {
    .lotto-table td {
        height: 35px;
    }
    
    .lotto-table span {
        font-size: 0.9rem;
    }
    
    .popup-grid {
        grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    }
    
    .popup-grid span {
        height: 40px;
    }
}
/* --- TICKET PAGE SPECIFIC UPDATES --- */
.page-container {
    flex: 1;
    padding: 90px 15px 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.ticket-card {
    background: white;
    color: #333;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px dashed #e0e0e0;
}

.ticket-header h2 {
    font-size: 1.5rem;
    color: var(--dark);
    font-weight: 800;
}

.draw-badge-unique {
    background: linear-gradient(45deg, #FFB100, #FFCC00);
    color: #000;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    border: 2px solid #fff;
    text-transform: uppercase;
}

/* Inputs Grid - 2 fields per row */
.inputs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.input-group label {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
    color: #555;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    background: #f9f9f9;
}

.input-group input:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 3px 10px rgba(255, 77, 109, 0.1);
}

/* Game Time Info */
.game-time-info {
    background: linear-gradient(90deg, rgba(255, 77, 109, 0.1), rgba(0, 229, 255, 0.1));
    padding: 12px 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    border-left: 4px solid var(--primary);
}

.game-time-info p {
    margin: 0;
    font-weight: 700;
    color: #333;
    font-size: 1rem;
}

.game-time-info i {
    color: var(--primary);
    margin-right: 8px;
}

/* Tables */
.tables-wrapper {
    margin-bottom: 25px;
}

.lotto-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    table-layout: fixed;
}

.lotto-table td {
    border: 2px solid #222;
    height: 45px;
    padding: 0;
    text-align: center;
    background: white;
    width: 11.11%;
}

.lotto-table span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 800;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.2s;
    color: #333;
    user-select: none;
}

.lotto-table span:hover:not(.disabled):not(.filled) {
    background: rgba(255, 77, 109, 0.1);
}

span.filled {
    background: #e0e0e0 !important;
    color: #000;
}

span.disabled {
    background: #ccc !important;
    opacity: 0.3;
    cursor: not-allowed;
}

/* Final Section */
.final-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed #e0e0e0;
}

.final-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.confirm-btn {
    background: linear-gradient(45deg, var(--primary), #FF2A51);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 77, 109, 0.3);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 180px;
    justify-content: center;
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 77, 109, 0.4);
}

.id-display {
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    min-width: 200px;
    text-align: center;
}

.id-display span {
    color: var(--primary);
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 900;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .inputs-grid {
        grid-template-columns: 1fr;
    }
    
    .ticket-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .final-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .confirm-btn, .id-display {
        width: 100%;
        min-width: auto;
    }
    
    .ticket-card {
        padding: 20px 15px;
    }
    
    .draw-badge-unique {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .lotto-table td {
        height: 40px;
    }
    
    .lotto-table span {
        font-size: 1rem;
    }
}
/* Ավելացնել այս կոճակի ստիլները ticket page բաժնում */

/* Auto Generate Button */
.auto-generate-section {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.auto-generate-btn {
    background: linear-gradient(45deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.auto-generate-btn:hover {
    background: linear-gradient(45deg, #388E3C, #1B5E20);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.auto-generate-btn i {
    font-size: 1.1rem;
}

/* Controls Row */
.controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 768px) {
    .controls-row {
        flex-direction: column;
    }
    
    .auto-generate-btn {
        width: 100%;
        justify-content: center;
    }
}
/* --- AUTO GENERATE SECTION --- */
.auto-generate-section {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.auto-generate-btn {
    background: linear-gradient(45deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.auto-generate-btn:hover {
    background: linear-gradient(45deg, #388E3C, #1B5E20);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.auto-generate-btn i {
    font-size: 1.1rem;
}

.auto-generate-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Game Time Info */
.game-time-info {
    background: linear-gradient(90deg, rgba(255, 77, 109, 0.1), rgba(0, 229, 255, 0.1));
    padding: 12px 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    border-left: 4px solid var(--primary);
}

.game-time-info p {
    margin: 0;
    font-weight: 700;
    color: #333;
    font-size: 1rem;
}

.game-time-info i {
    color: var(--primary);
    margin-right: 8px;
}

/* Final Section */
.final-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .auto-generate-btn {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }
    
    .game-time-info {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}
/* === Վերիֆիկացիոն կոդի նոր դիզայն === */
.verification-field {
    margin: 25px 0 15px;
}
.code-input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.code-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255,77,109,0.1);
}
.code-icon {
    padding: 0 16px;
    color: #999;
    font-size: 1.2rem;
}
.code-input-wrapper input {
    flex: 1;
    border: none;
    padding: 15px 0;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 6px;
    background: transparent;
    color: #333;
}
.code-input-wrapper input:focus {
    outline: none;
}
.code-input-wrapper input:disabled {
    background: #f5f5f5;
    color: #666;
    letter-spacing: normal;
    font-weight: normal;
}
.code-send-btn {
    background: linear-gradient(45deg, var(--primary), #FF2A51);
    color: white;
    border: none;
    padding: 0 24px;
    height: 54px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}
.code-send-btn:hover {
    background: linear-gradient(45deg, #FF2A51, #FF0040);
}
.code-send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.code-hint {
    font-size: 0.8rem;
    color: #666;
    margin-top: 8px;
    padding-left: 12px;
}
.verification-modern {
    background: linear-gradient(145deg, #ffffff, #f7f9fc);
    border-radius: 24px;
    padding: 28px 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,77,109,0.1);
    margin-bottom: 30px;
}
.code-input-container input {
    background: #fafafa;
    transition: 0.2s;
}
.code-input-container input:focus {
    background: white;
}
.btn-gradient {
    background: linear-gradient(145deg, #FF4D6D, #FF2A51);
    border-radius: 18px;
    padding: 16px 32px;
}