/* Responsive Design */

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
}

/* Desktop */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-bg);
        transition: 0.3s;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .roadmap-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .price-card {
        padding: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
    
    .contract-display {
        flex-direction: column;
        gap: 1rem;
    }
    
    #contractAddress {
        width: 100%;
        max-width: 300px;
    }
    
    .btn-large {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contract-info {
        flex-direction: column;
        align-items: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .logo-animation {
        width: 80px;
        height: 80px;
    }
    
    .price-card {
        padding: 1rem;
    }
    
    .price-display {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .price-value {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .features-grid,
    .roadmap-grid,
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
    
    .nav-brand .brand-text {
        font-size: 1.2rem;
    }
    
    .nav-logo {
        width: 30px;
        height: 30px;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .price-card {
        padding: 0.8rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }
    
    .logo-section {
        margin-bottom: 0;
    }
    
    .hero-stats {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-animation,
    .nav-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .nav-toggle,
    .btn {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 0;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-title {
        color: black;
        -webkit-text-fill-color: black;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .logo-animation {
        animation: none;
    }
    
    .hero-title {
        animation: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-bg: #0e0e1a;
        --secondary-bg: #1a1a2e;
        --primary-text: #ffffff;
    }
}

/* Light Mode Support (if needed) */
@media (prefers-color-scheme: light) {
    :root {
        --primary-bg: #0e0e1a;
        --secondary-bg: #1a1a2e;
        --primary-text: #ffffff;
    }
} 

@media (max-width: 600px) {
  .auth-container {
    padding: 1.5rem;
    max-width: 100%;
    border-radius: 8px;
  }
  .auth-title {
    font-size: 1.5rem;
  }
  .auth-form input {
    padding: 0.8rem;
    font-size: 0.95rem;
  }
  .auth-form button {
    font-size: 1rem;
    padding: 1rem;
  }
  .form-group-extra {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .auth-form .form-group {
    margin-bottom: 1rem;
  }
  .auth-switch {
    margin-top: 1rem;
  }
} 