/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2d3748 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Header Styles - Same as main page */
.main-header {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #4299e1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10px;
    position: relative;
}

.logo-section {
    flex-shrink: 0;
}

.site-logo {
    max-width: 208px;
    height: auto;
    transition: all 0.3s ease;
}

.primary-navigation {
    flex: 1;
    margin: 0 30px;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background: #4299e1;
    color: white;
}

.dropdown-menu {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a2332;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    border-radius: 8px;
    display: none;
    list-style: none;
    z-index: 1001;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-menu.active .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content li {
    border-bottom: 1px solid #2d3748;
}

.dropdown-content li:last-child {
    border-bottom: none;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    border-bottom: 1px solid #2d3748;
    border-radius: 0;
}

.dropdown-content a:hover {
    background: rgba(66, 153, 225, 0.3);
    transform: none;
}

.dropdown-arrow {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-menu.active .dropdown-arrow {
    transform: rotate(180deg);
}

.auth-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-register, .btn-login {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-register {
    background: #48bb78;
    color: white;
}

.btn-register:hover {
    background: #38a169;
    transform: translateY(-2px);
}

.btn-login {
    background: transparent;
    color: #4299e1;
    border: 2px solid #4299e1;
}

.btn-login:hover {
    background: #4299e1;
    color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s ease;
    flex-shrink: 0;
    order: 3;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Styles */
.nav-menu.mobile-active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    background: #1a2332;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    z-index: 1000;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    border-top: 2px solid #4299e1;
    animation: slideDown 0.3s ease;
}

.nav-menu.mobile-active li {
    width: 100%;
    margin-bottom: 5px;
}

.nav-menu.mobile-active a {
    display: block;
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    background: rgba(45, 55, 72, 0.5);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.nav-menu.mobile-active a:hover {
    background: #4299e1;
    transform: translateX(5px);
}

.nav-menu.mobile-active .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    background: rgba(45, 55, 72, 0.3);
    margin-top: 5px;
    margin-left: 20px;
    border-radius: 8px;
    opacity: 1;
    transform: none;
    transition: none;
}

.nav-menu.mobile-active .dropdown-menu.active .dropdown-content {
    display: block;
}

.nav-menu.mobile-active .dropdown-content a {
    padding: 10px 15px;
    font-size: 0.9rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Section Description */
.section-description {
    text-align: center;
    color: #cbd5e0;
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* AviatriX Hero Section */
.aviatrix-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2d3748 100%);
    position: relative;
    overflow: hidden;
}

.aviatrix-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.aviatrix-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #e2e8f0;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    color: #cbd5e0;
    margin-bottom: 35px;
    line-height: 1.6;
}

.game-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(45, 55, 72, 0.6);
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid #22c55e;
}

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

.highlight-text {
    display: flex;
    flex-direction: column;
}

.highlight-title {
    color: #22c55e;
    font-weight: 700;
    font-size: 1.1rem;
}

.highlight-desc {
    color: #cbd5e0;
    font-size: 0.9rem;
}

.hero-cta {
    text-align: center;
}

.btn-play-aviatrix {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn-play-aviatrix:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.demo-note {
    color: #fbbf24;
    font-weight: 600;
    margin-top: 15px;
    font-size: 1rem;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.helicopter-showcase {
    width: 100%;
    max-width: 400px;
}

.helicopter-container {
    position: relative;
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid #22c55e;
    margin-bottom: 20px;
}

.helicopter {
    font-size: 4rem;
    position: absolute;
    top: 20px;
    left: 30px;
    animation: helicopter-fly 3s ease-in-out infinite;
}

.flight-path {
    height: 2px;
    background: linear-gradient(90deg, #22c55e, transparent);
    margin: 60px 0 40px;
    position: relative;
}

.flight-path::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 8px solid #22c55e;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.multiplier-display {
    text-align: center;
    background: rgba(34, 197, 94, 0.2);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #22c55e;
}

.multiplier-value {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #22c55e;
    margin-bottom: 5px;
}

.multiplier-label {
    color: #cbd5e0;
    font-size: 0.9rem;
}

.game-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    flex: 1;
    background: rgba(45, 55, 72, 0.8);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 5px;
}

.stat-label {
    color: #a0aec0;
    font-size: 0.8rem;
}

/* How to Play Section */
.how-to-play-section {
    padding: 80px 0;
    background: rgba(26, 35, 50, 0.8);
}

.how-to-play-section h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.gameplay-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.step-card {
    background: linear-gradient(135deg, #2d3748, #4a5568);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: #22c55e;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.2);
}

.step-number {
    background: #22c55e;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h3 {
    color: #e2e8f0;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.step-content p {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-tip {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* Game Features Section */
.game-features-section {
    padding: 80px 0;
    background: rgba(15, 20, 25, 0.9);
}

.game-features-section h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.feature-card {
    background: linear-gradient(135deg, #4a5568, #2d3748);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #22c55e;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.2);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    color: #22c55e;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: #cbd5e0;
    line-height: 1.6;
}

/* Strategies Section */
.strategies-section {
    padding: 80px 0;
}

.strategies-section h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.strategy-card {
    background: linear-gradient(135deg, #2d3748, #4a5568);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid #22c55e;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.2);
}

.strategy-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.strategy-card h3 {
    color: #22c55e;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.strategy-card p {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.strategy-stats {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.strategy-stats .stat {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Game Statistics Section */
.game-stats-section {
    padding: 80px 0;
    background: rgba(26, 35, 50, 0.8);
}

.game-stats-section h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, #4a5568, #2d3748);
    padding: 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid #22c55e;
}

.stat-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: #22c55e;
    margin-bottom: 5px;
}

.stat-label {
    color: #cbd5e0;
    font-size: 0.9rem;
}

.multiplier-frequency {
    background: linear-gradient(135deg, #2d3748, #4a5568);
    padding: 30px;
    border-radius: 16px;
}

.multiplier-frequency h3 {
    color: #22c55e;
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.frequency-bars {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.frequency-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.range {
    color: #e2e8f0;
    font-weight: 600;
    min-width: 80px;
    font-size: 0.9rem;
}

.frequency-bar {
    flex: 1;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.frequency-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.percentage {
    color: #22c55e;
    font-weight: 700;
    min-width: 40px;
    text-align: right;
    font-size: 0.9rem;
}

/* Tips Section */
.tips-section {
    padding: 80px 0;
    background: rgba(15, 20, 25, 0.9);
}

.tips-section h2 {
    text-align: center;
    color: #e2e8f0;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.tip-card {
    background: linear-gradient(135deg, #4a5568, #2d3748);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tip-card:hover {
    transform: translateY(-10px);
    border-color: #22c55e;
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.2);
}

.tip-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.tip-card h3 {
    color: #22c55e;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.tip-card p {
    color: #cbd5e0;
    line-height: 1.6;
}

/* Responsible Gaming Section */
.responsible-gaming-section {
    padding: 40px 0;
    background: rgba(239, 68, 68, 0.1);
    border-top: 3px solid #ef4444;
    border-bottom: 3px solid #ef4444;
}

.responsible-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

.responsible-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.responsible-text h3 {
    color: #ef4444;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.responsible-text p {
    color: #cbd5e0;
    line-height: 1.6;
}

.responsible-text a {
    color: #4299e1;
    text-decoration: none;
}

.responsible-text a:hover {
    text-decoration: underline;
}

.age-restriction {
    background: #ef4444;
    color: white;
    padding: 15px 20px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Footer Styles - Same as main page */
.main-footer {
    background: #0f1419;
    padding: 50px 0 20px;
    border-top: 2px solid #4299e1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.payment-methods {
    text-align: center;
    margin-bottom: 40px;
}

.payment-methods h3 {
    color: #e2e8f0;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-icons img {
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.payment-icons img:hover {
    filter: grayscale(0);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: #4299e1;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: #a0aec0;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #4299e1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    color: #718096;
}

/* Animations */
@keyframes helicopter-fly {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-2deg);
    }
}

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

/* Responsive Design - Same breakpoints as main page */
@media (max-width: 1080px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .primary-navigation {
        position: relative;
        margin: 0;
        order: 2;
    }
    
    .auth-buttons {
        flex-direction: row;
        gap: 8px;
        order: 2;
    }
    
    .mobile-menu-toggle {
        order: 3;
    }
    
    .logo-section {
        order: 1;
    }
    
    .site-logo {
        max-width: 180px;
    }
    
    .btn-register, .btn-login {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .aviatrix-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gameplay-steps {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .strategies-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-logo {
        max-width: 150px;
    }
    
    .btn-register, .btn-login {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .auth-buttons {
        gap: 6px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .game-highlights {
        gap: 15px;
    }
    
    .highlight-item {
        padding: 12px 15px;
    }
    
    .helicopter-container {
        padding: 20px;
    }
    
    .helicopter {
        font-size: 3rem;
    }
    
    .game-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .strategies-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .responsible-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .payment-icons {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 8px 10px;
    }
    
    .site-logo {
        max-width: 120px;
    }
    
    .btn-register, .btn-login {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .auth-buttons {
        gap: 4px;
    }
    
    .mobile-menu-toggle {
        font-size: 1.5rem;
        padding: 6px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .game-highlights {
        gap: 10px;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .highlight-icon {
        margin-bottom: 10px;
    }
    
    .helicopter-container {
        padding: 15px;
    }
    
    .helicopter {
        font-size: 2.5rem;
    }
    
    .nav-menu.mobile-active {
        padding: 15px;
    }
    
    .nav-menu.mobile-active a {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .site-logo {
        max-width: 100px;
    }
    
    .btn-register, .btn-login {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .helicopter {
        font-size: 2rem;
    }
    
    .mobile-menu-toggle {
        font-size: 1.3rem;
        padding: 5px;
    }
    
    .nav-menu.mobile-active {
        padding: 10px;
    }
    
    .nav-menu.mobile-active a {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

/* Enhanced Mobile Menu Animation */
@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.nav-menu.mobile-closing {
    animation: slideUp 0.3s ease forwards;
}

/* Smooth transitions for responsive elements */
@media (prefers-reduced-motion: no-preference) {
    .site-logo,
    .btn-register,
    .btn-login,
    .auth-buttons {
        transition: all 0.3s ease;
    }
}
