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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000;
    overflow-x: hidden;
}

/* Modern Header */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(33, 150, 243, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

/* Brand Section */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2196f3, #21cbf3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.3);
}

.brand-text {
    font-size: 1.7rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* Actions Section */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.crypto-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(33, 150, 243, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.price-label {
    color: #2196f3;
    font-weight: 600;
    font-size: 0.85rem;
}

.price-value {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
}

.cta-button-header {
    background: linear-gradient(135deg, #2196f3, #21cbf3);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(33, 150, 243, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.4);
    background: linear-gradient(135deg, #1976d2, #2196f3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Landing Page Container */
.landing-page {
    min-height: 100vh;
    background-color: #000;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 90px;
}

.hero-background {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100% - 90px);
    background-image: url('../images/hero-background.jpeg');
    background-size: cover;
    background-position: center 22%;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100% - 90px);
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 2rem;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.highlight {
    color: #efb810;
    text-shadow: 0 0 20px rgba(239, 184, 16, 0.5);
}

.cta-button {
    background: linear-gradient(135deg, #efb810 0%, #c49900 100%);
    color: #000;
    border: none;
    padding: 1.5rem 4rem;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(239, 184, 16, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(239, 184, 16, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

/* Video Section */
.video-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #000 0%, #111 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.main-video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid #efb810;
    box-shadow: 0 20px 40px rgba(239, 184, 16, 0.2);
    transition: all 0.3s ease;
}

.main-video:hover {
    border-color: #c49900;
    box-shadow: 0 25px 50px rgba(239, 184, 16, 0.3);
}

.video-cta-container {
    text-align: center;
    margin-top: 3rem;
}

.video-cta-button {
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Photo Collage Section */
.collage-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #111 0%, #000 100%);
}

.photo-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}

.photo-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: flex-end;
    min-height: 200px;
    animation: fadeInUp 0.8s ease-out;
}

.photo-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #efb810;
    box-shadow: 0 20px 40px rgba(239, 184, 16, 0.3);
}

.photo-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom;
    transition: all 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-item-triple {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.photo-item-triple img {
    width: 100%;
    max-width: 100%;
}

/* Animation delays for photo items */
.photo-item:nth-child(1) { animation-delay: 0.1s; }
.photo-item:nth-child(2) { animation-delay: 0.2s; }
.photo-item:nth-child(3) { animation-delay: 0.3s; }
.photo-item:nth-child(4) { animation-delay: 0.4s; }

/* JU8 Image Section */
.ju8-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #000 0%, #111 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.ju8-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.ju8-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    border: 3px solid #efb810;
    box-shadow: 0 20px 40px rgba(239, 184, 16, 0.3);
    transition: all 0.3s ease;
}

.ju8-image:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #c49900;
    box-shadow: 0 25px 50px rgba(239, 184, 16, 0.4);
}

/* Large CTA Button for Hero Section */
.cta-button-large {
    padding: 2rem 5rem !important;
    font-size: 2rem !important;
    font-weight: 900 !important;
    margin: 2rem 0;
    box-shadow: 0 15px 40px rgba(239, 184, 16, 0.4) !important;
}

.cta-button-large:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 50px rgba(239, 184, 16, 0.5) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-nav {
        padding: 1rem 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .crypto-price {
        display: none;
    }

    .brand-text {
        font-size: 1.3rem;
    }

    .brand-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .cta-button-header {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .cta-button {
        padding: 1.2rem 3rem;
        font-size: 1.2rem;
    }

    .cta-button-large {
        padding: 1.5rem 3.5rem !important;
        font-size: 1.5rem !important;
    }

    .photo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .photo-item-triple {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content {
        padding: 1rem;
    }

    .video-section,
    .collage-section,
    .ju8-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .brand-text {
        font-size: 1.1rem;
    }

    .brand-icon {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .cta-button-large {
        padding: 1.2rem 2.8rem !important;
        font-size: 1.2rem !important;
    }

    .cta-button-header {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}