/* 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.5;
    color: #e0e0e0;
    background-color: #0a1f0a;
    font-size: 0.8rem;
}

/* Mobile-Friendly Header Styles */
.mobile-header {
    background: linear-gradient(135deg, #0d2e1a 0%, #1a4d2e 100%);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15), 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 70px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
}

/* Logo Styles */
.header-logo {
    flex-shrink: 0;
}

.header-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Desktop Navigation Styles */
.desktop-nav {
    display: none !important; /* Hidden by default, shown only on desktop */
}

.desktop-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.desktop-nav-item {
    position: relative;
}

.desktop-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

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

.desktop-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
    color: #ffffff;
}

.desktop-nav-link:active {
    transform: scale(0.95);
}

/* Button Container */
.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Button Base Styles */
.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 80px;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.header-btn:hover::before {
    left: 100%;
}

.btn-text {
    position: relative;
    z-index: 1;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Login Button */
.login-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Register Button */
.register-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333333;
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.register-btn:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    border-color: rgba(255, 215, 0, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: #333333;
}

/* Desktop Navigation Display */
@media (min-width: 769px) {
    .desktop-nav {
        display: flex !important;
    }
    
    .header-container {
        justify-content: space-between;
    }
    
    .header-logo {
        flex: 0 0 auto;
    }
    
    .desktop-nav {
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .header-buttons {
        flex: 0 0 auto;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important; /* Force hide desktop nav on mobile */
    }
    
    .mobile-header {
        min-height: 65px;
    }
    
    .header-container {
        height: 65px;
        padding: 0 15px;
    }
    
    .header-logo-img {
        width: 100px;
        height: 100px;
    }
    
    .header-buttons {
        gap: 8px;
    }
    
    .header-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        min-width: 70px;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .desktop-nav {
        display: none !important; /* Force hide desktop nav on mobile */
    }
    
    .mobile-header {
        min-height: 60px;
    }
    
    .header-container {
        height: 60px;
        padding: 0 12px;
    }
    
    .header-logo-img {
        width: 150px;
        height: 120px;
    }
    
    .header-buttons {
        gap: 6px;
    }
    
    .header-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-width: 60px;
        border-radius: 18px;
    }
}

@media (max-width: 360px) {
    .desktop-nav {
        display: none !important; /* Force hide desktop nav on mobile */
    }
    
    .header-container {
        padding: 0 8px;
    }
    
    .header-logo-img {
        width: 70px;
        height: 70px;
    }
    
    .header-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
        min-width: 55px;
        border-radius: 16px;
    }
}

/* Animation for header elements */
@keyframes headerSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-header {
    animation: headerSlideIn 0.6s ease-out;
}

.header-logo-img,
.header-btn {
    animation: headerSlideIn 0.8s ease-out;
}

.header-btn:nth-child(2) {
    animation-delay: 0.1s;
}

/* Active state for buttons */
.header-btn:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Focus styles for accessibility */
.header-btn:focus {
    outline: 2px solid rgba(255, 215, 0, 0.8);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .header-btn {
        border-width: 3px;
    }
    
    .login-btn {
        background: rgba(255, 255, 255, 0.2);
        border-color: #ffffff;
    }
    
    .register-btn {
        background: #ffd700;
        border-color: #333333;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .header-btn,
    .header-logo-img,
    .mobile-header {
        animation: none;
        transition: none;
    }
    
    .header-btn::before {
        display: none;
    }
}

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

/* Header and Navigation */
.hero {
    background: linear-gradient(135deg, #0a1f0a 0%, #1a4d2e 100%);
    color: #e0e0e0;
    padding: 3rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    color: #ffd700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-buttons .btn {
    animation: slideInFromLeft 0.8s ease-out 0.8s both;
}

.hero-buttons .btn:nth-child(2) {
    animation-delay: 1s;
}

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

.app-screenshot {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 4px 10px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 80px;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    border: 1px solid rgba(255, 215, 0, 0.4);
    position: relative;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(224, 224, 224, 0.12);
    color: #e0e0e0;
    border: 1px solid rgba(224, 224, 224, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
    background: rgba(224, 224, 224, 0.25);
    box-shadow: 0 4px 12px rgba(224, 224, 224, 0.3);
    border-color: rgba(224, 224, 224, 0.6);
    transform: translateY(-1px);
}

.btn-large {
    padding: 6px 14px;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    font-size: 1.2rem;
}

/* Features Section */
.features {
    padding: 3rem 0;
    background: #0a1f0a;
}

.section-title {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

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

.feature-card {
    background: #0a1f0a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    text-align: center;
    transition: transform 0.3s ease;
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

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

/* Download CTA Section */
.download-cta {
    background: linear-gradient(135deg, #0a1f0a 0%, #1a4d2e 100%);
    color: #e0e0e0;
    padding: 3rem 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-text {
    text-align: left;
}

.cta-text h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.download-cta-image {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.download-cta-image:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-text {
        text-align: center;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* How to Use Section */
.how-to-use {
    padding: 3rem 0;
    background: #0a1f0a;
}

.how-to-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.how-to-card {
    background: #0a1f0a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    position: relative;
    transition: transform 0.3s ease;
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.how-to-card:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.how-to-card h3 {
    margin: 1rem 0 1rem 0;
    font-size: 1rem;
    color: #e0e0e0;
}

.how-to-card p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.step-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* App Guide Section */
.app-guide {
    padding: 3rem 0;
    background: #0a1f0a;
}

.guide-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.guide-text h3 {
    font-size: 1rem;
    margin: 2rem 0 1rem 0;
    color: #e0e0e0;
}

.guide-text h3:first-child {
    margin-top: 0;
}

.guide-text p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.guide-list {
    list-style: none;
    margin: 1rem 0;
}

.guide-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.guide-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.guide-list a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.guide-list a:hover {
    text-decoration: underline;
}

.guide-image {
    text-align: center;
}

.guide-img {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.guide-img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .guide-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .how-to-grid {
        grid-template-columns: 1fr;
    }
    
    .step-links {
        align-items: center;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #051408 0%, #0a1f0a 50%, #0d2e1a 100%);
    color: #e0e0e0;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    animation: shimmer 4s ease-in-out infinite;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

/* Footer Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-description {
    color: #bdc3c7;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
    text-decoration: none;
    color: #ffffff;
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

/* Footer Links Section */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h4 {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin: 0 0 1rem 0;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: block;
    font-weight: 500;
}

.footer-link:hover {
    color: #ffd700;
    transform: translateX(5px);
}

/* Footer Download Section */
.footer-download {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-download h4 {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
}

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

.social-links a:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.6);
}

.social-links a:hover::before {
    left: 100%;
}

.app-downloads {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

.app-downloads:hover::before {
    left: 100%;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 237, 78, 0.05) 100%);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(15px);
    margin-bottom: 0.8rem;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.6s ease;
}

.download-btn:hover,
.download-btn:active,
.download-btn:focus {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 237, 78, 0.1) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.6);
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.download-btn small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    color: #ffd700;
    font-weight: 500;
}

.download-btn strong {
    font-size: 0.95rem;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #ffd700;
}

.separator {
    color: #666;
    font-weight: bold;
}

/* Login Page Styles */
.login-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #0a1f0a 0%, #1a4d2e 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.login-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.login-content {
    background: #0a1f0a;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.login-subtitle {
    text-align: center;
    color: #bdc3c7;
    margin-bottom: 2rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #e0e0e0;
}

.form-input {
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.forgot-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

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

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e1e5e9;
}

.login-divider span {
    background: #34495e;
    padding: 0 1rem;
    color: #bdc3c7;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-social {
    background: linear-gradient(135deg, #0a1f0a 0%, #0d2e1a 100%);
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-size: 0.8rem;
}

.btn-social::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;
}

.btn-social:hover,
.btn-social:active,
.btn-social:focus {
    background: linear-gradient(135deg, #0d2e1a 0%, #0a1f0a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-social:hover::before {
    left: 100%;
}

.login-footer {
    margin-top: 2rem;
    text-align: center;
}

.login-footer p {
    margin-bottom: 0.5rem;
}

.login-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover {
    text-decoration: underline;
}

.login-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: #0a1f0a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card h3 {
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.download-reminder {
    background: linear-gradient(135deg, #0a1f0a 0%, #0d2e1a 100%);
    color: #e0e0e0;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.download-reminder h4 {
    margin-bottom: 1rem;
}

.download-reminder p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.login-image-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 2rem;
}

.login-image {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.login-image:hover {
    transform: scale(1.05);
}

.login-image-section h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.login-image-section p {
    color: #666;
    font-size: 0.9rem;
}

/* Download Page Styles */
.download-hero {
    background: linear-gradient(135deg, #0a1f0a 0%, #1a4d2e 100%);
    color: #e0e0e0;
    padding: 3rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.download-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.download-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: bold;
    color: #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-app-preview {
    position: relative;
    text-align: center;
}

.app-preview {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.floating-download-buttons {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.download-section {
    padding: 3rem 0;
    background: #0a1f0a;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.download-card {
    background: #0a1f0a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-card:hover {
    transform: translateY(-5px);
}

.download-card.featured {
    border: 2px solid #ffd700;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.download-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.download-card p {
    color: #bdc3c7;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.btn-app-store {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: app-store-glow 2.5s ease-in-out infinite;
}

.btn-app-store:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    animation: none;
}

@keyframes app-store-glow {
    0%, 100% { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); }
}

.btn-google-play {
    background: linear-gradient(135deg, #4285f4 0%, #5a9cff 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: google-play-glow 2.5s ease-in-out infinite;
}

.btn-google-play:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.5);
    animation: none;
}

@keyframes google-play-glow {
    0%, 100% { box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3); }
    50% { box-shadow: 0 4px 15px rgba(66, 133, 244, 0.4); }
}

.btn-web {
    background: linear-gradient(135deg, #6c757d 0%, #8a9ba8 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-web:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

.app-store-image {
    margin: 1rem 0;
    text-align: center;
}

.store-image {
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.store-image:hover {
    transform: scale(1.05);
}

.app-features {
    padding: 3rem 0;
    background: #0a1f0a;
}

.system-requirements {
    padding: 3rem 0;
    background: #0a1f0a;
}

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

.requirement-card {
    background: #0a1f0a;
    padding: 2rem;
    border-radius: 15px;
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.requirement-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.requirement-card ul {
    list-style: none;
}

.requirement-card li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.requirement-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.faq-section {
    padding: 3rem 0;
    background: #1a4d2e;
}

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

.faq-item {
    background: #0a1f0a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.faq-item p {
    color: #bdc3c7;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 3rem 0;
    background: #0a1f0a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #0a1f0a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info h4 {
    margin: 0;
    color: #e0e0e0;
    font-size: 1.1rem;
}

.author-info span {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Social Features Section */
.social-features {
    padding: 3rem 0;
    background: #0a1f0a;
}

.social-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-feature-card {
    background: #0a1f0a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    text-align: center;
    transition: transform 0.3s ease;
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-feature-card:hover {
    transform: translateY(-5px);
}

.feature-image {
    margin-bottom: 1.5rem;
}

.social-img {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.social-img:hover {
    transform: scale(1.05);
}

.social-feature-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

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

/* Google Search Results Section */
.search-results {
    padding: 3rem 0;
    background: #0a1f0a;
}

.search-preview {
    max-width: 800px;
    margin: 3rem auto 0;
}

.search-result-card {
    background: #0a1f0a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

.search-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.search-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.search-info h3 {
    margin: 0;
    color: #1a0dab;
    font-size: 1rem;
    font-weight: normal;
}

.search-url {
    color: #006621;
    font-size: 0.9rem;
}

.search-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.search-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-link {
    color: #1a0dab;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.search-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .social-features-grid {
        grid-template-columns: 1fr;
    }
    
    .search-links {
        flex-direction: column;
    }
}

/* Privacy Policy Styles */
.privacy-content {
    padding: 4rem 0;
    background: white;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-header h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.last-updated {
    color: #666;
    font-style: italic;
}

.privacy-body {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    font-size: 1rem;
    margin: 1.5rem 0 1rem;
    color: #333;
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        width: 120px;
        height: 120px;
    }
    
    .navbar__content {
        justify-content: space-between;
        padding: 0 10px;
        height: 50px;
    }
    
    .navbar__content-center {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .content-daman__right {
        gap: 0.4rem;
    }
    
    .nav-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
        min-width: 50px;
        border-radius: 15px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #667eea;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .login-container {
        grid-template-columns: 1fr;
    }
    
    .download-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .download-stats {
        justify-content: center;
    }
    
    .download-options {
        grid-template-columns: 1fr;
    }
    
    .download-card.featured {
        transform: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 6px 12px;
        font-size: 0.7rem;
        min-width: 80px;
    }
    
    .btn-large {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 130px;
        height: 100px;
    }
    
    .navbar__content {
        padding: 0 8px;
        height: 45px;
    }
    
    .mobile-nav-toggle {
        padding: 12px;
        min-width: 48px;
        min-height: 48px;
        border-radius: 14px;
        right: 10px;
    }
    
    .hamburger-line {
        width: 22px;
        height: 3px;
        margin: 3px 0;
    }
    
    .mobile-nav-close {
        width: 35px;
        height: 35px;
        top: 15px;
        right: 15px;
        position: fixed;
    }
    
    .close-icon {
        font-size: 1rem;
    }
    
    .content-daman__right {
        gap: 0.3rem;
    }
    
    .nav-btn {
        padding: 8px 14px;
        font-size: 1rem;
        min-width: 65px;
        border-radius: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 5px 10px;
        font-size: 0.65rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-logo {
        width: 100px;
        height: 100px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-links {
        display: none; /* Hide quick links on mobile */
    }
    
    .footer-download {
        display: none; /* Hide download section on mobile */
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .download-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .footer-main {
        gap: 1.5rem;
    }
    
    .footer-logo {
        width: 80px;
        height: 80px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-links {
        display: none; /* Hide quick links on mobile */
    }
    
    .footer-download {
        display: none; /* Hide download section on mobile */
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
    
    .download-btn {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus States for Accessibility */
.btn:focus,
.form-input:focus,
.nav-link:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* QR Code Section */
.qr-section {
    padding: 3rem 0;
    background: #0a1f0a;
}

.qr-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.qr-content h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.qr-content p {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin-bottom: 2rem;
}

.qr-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.qr-code {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.qr-code:hover {
    transform: scale(1.05);
}

.qr-info {
    text-align: left;
    max-width: 300px;
}

.qr-info h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
}

.qr-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .qr-container {
        flex-direction: column;
        text-align: center;
    }
    
    .qr-info {
        text-align: center;
    }
    
    .qr-code {
        width: 150px;
        height: 150px;
    }
}

/* 404 Error Page Styles */
.error-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a1f0a 0%, #1a4d2e 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.error-title {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.error-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.error-actions .btn {
    min-width: 150px;
}

.error-suggestions {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.error-suggestions h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.suggestion-links {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.suggestion-links li {
    margin: 0;
}

.suggestion-links a {
    display: block;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.suggestion-links a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

@media (max-width: 768px) {
    .error-title {
        font-size: 2rem;
    }
    
    .error-description {
        font-size: 1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .suggestion-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .error-content {
        padding: 1rem;
    }
    
    .error-title {
        font-size: 1.8rem;
    }
    
    .error-icon {
        font-size: 3rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn,
    .hamburger {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        background: white;
        color: black;
    }
} 


