/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #e08821;
    --primary-gold: #d4af37;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --border-gold: #d4af37;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-family: 'Marcellus SC', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 10px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-link i {
    font-size: 10px;
    margin-left: 5px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.95);
    list-style: none;
    min-width: 200px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-white);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(224, 136, 33, 0.2);
    color: var(--primary-orange);
}

.nav-right {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

/* ============================================
   BETA BANNER
   ============================================ */
.beta-banner {
    margin-top: 70px;
    background-color: var(--primary-orange);
    padding: 15px 0;
    box-shadow: 0px 0px 20px 5px rgba(224, 136, 33, 0.5);
}

.beta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-join {
    padding: 8px 20px;
    border: 2px solid var(--darker-bg);
    background-color: transparent;
    color: var(--darker-bg);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-join:hover {
    background-color: var(--darker-bg);
    color: var(--primary-orange);
}

.beta-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--darker-bg);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 20% 50%, rgba(224, 136, 33, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    background-attachment: fixed;
    padding: 100px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(224, 136, 33, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: 'Marcellus SC', serif;
    font-size: 120px;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    margin-bottom: 30px;
    letter-spacing: 5px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    letter-spacing: 2px;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   SCREENSHOTS SECTION
   ============================================ */
.screenshots-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.golden-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin-bottom: 60px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.screenshot-item-center {
    grid-column: span 2;
    max-width: 600px;
    margin: 0 auto;
}

@media screen and (max-width: 991px) {
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .screenshot-item-center {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshot-item-center {
        grid-column: span 1;
    }
}

.screenshot-item {
    position: relative;
    overflow: hidden;
    border: 3px solid var(--primary-gold);
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.screenshot-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.screenshot-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    padding: 80px 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 100, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 150, 0, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #000000 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10px 20px, rgba(255, 100, 0, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 50px 80px, rgba(255, 150, 0, 0.3) 1.5px, transparent 1.5px),
        radial-gradient(circle at 120px 150px, rgba(255, 100, 0, 0.35) 2px, transparent 2px),
        radial-gradient(circle at 200px 50px, rgba(255, 150, 0, 0.3) 1.5px, transparent 1.5px),
        radial-gradient(circle at 300px 200px, rgba(255, 100, 0, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 400px 100px, rgba(255, 150, 0, 0.3) 1.5px, transparent 1.5px),
        radial-gradient(circle at 500px 180px, rgba(255, 100, 0, 0.35) 2px, transparent 2px),
        radial-gradient(circle at 600px 60px, rgba(255, 150, 0, 0.3) 1.5px, transparent 1.5px),
        radial-gradient(circle at 700px 220px, rgba(255, 100, 0, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 800px 120px, rgba(255, 150, 0, 0.3) 1.5px, transparent 1.5px);
    background-size: 100% 100%;
    opacity: 0.6;
    pointer-events: none;
    animation: sparkle 20s infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.6;
        transform: translateY(0);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px);
    }
}

.newsletter-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-title {
    font-family: 'Marcellus SC', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-white);
    line-height: 1.4;
}

.newsletter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-subscribe {
    padding: 12px 30px;
    border: 1px solid var(--text-white);
    background-color: transparent;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-subscribe:hover {
    background-color: var(--text-white);
    color: var(--darker-bg);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
}

.feature-icon i {
    font-size: 36px;
    color: var(--primary-gold);
}

.feature-title {
    font-family: 'Marcellus SC', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
    background-color: var(--darker-bg);
    text-align: center;
    box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.8);
}

.about-title {
    font-family: 'Marcellus SC', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-description {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   NEWSLETTER FORM SECTION
   ============================================ */
.newsletter-form-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.newsletter-form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    border: 2px solid var(--primary-gold);
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
}

.newsletter-form-title {
    font-family: 'Marcellus SC', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.newsletter-form-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 30px;
}

.newsletter-form-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.newsletter-form-features li {
    padding: 10px 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form-features li:last-child {
    border-bottom: none;
}

.newsletter-form-note {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: left;
}

.btn-newsletter-subscribe {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-orange);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-newsletter-subscribe:hover {
    background-color: #c77a1a;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 40px;
    background-color: var(--darker-bg);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.footer-content p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 14px;
}

.footer-link {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-gold);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--dark-bg);
    margin: 10% auto;
    padding: 40px;
    border: 2px solid var(--primary-gold);
    width: 90%;
    max-width: 500px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-white);
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-orange);
}

.modal-title {
    font-family: 'Marcellus SC', serif;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-white);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-submit {
    padding: 15px;
    background-color: var(--primary-orange);
    color: var(--text-white);
    border: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #c77a1a;
}

.modal-footer-text {
    margin-top: 20px;
    text-align: center;
    color: var(--text-light);
}

.modal-link {
    color: var(--primary-orange);
    text-decoration: none;
}

.modal-link:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media screen and (max-width: 1199px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 5px 8px;
    }
}

@media screen and (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 15px 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: rgba(224, 136, 33, 0.1);
        margin-top: 10px;
        border: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 80px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .beta-text {
        font-size: 18px;
    }
    
    .newsletter-title {
        font-size: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media screen and (max-width: 767px) {
    .beta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .beta-text {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-description {
        font-size: 18px;
        padding: 0 20px;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-right {
        gap: 10px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .btn-login,
    .btn-download {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .logo-text {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 48px;
    }
    
    .newsletter-title {
        font-size: 20px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .about-title {
        font-size: 28px;
    }
}

