* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #000000, #1a1a1a, #333333);
    color: #ffffff;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 2px solid #ff0000;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .glitch {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .dramatic-text {
        font-size: 1.4rem;
        margin: 5px 0;
    }

    .cta-button {
        padding: 15px 25px;
        font-size: 1.2rem;
        margin: 10px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }

    .prophecy {
        padding: 25px 20px;
        margin: 20px 0;
    }

    .section {
        padding: 40px 15px;
    }

    .warning-banner {
        padding: 15px 10px;
        font-size: 0.9rem;
    }

    #countdown {
        margin-top: 8px !important;
        font-size: 0.8rem !important;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        border-top: 1px solid #ff0000;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 0, 0, 0.2);
        text-align: center;
        display: block;
    }

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

    .logo-text {
        font-size: 1.2rem;
    }

    .logo {
        height: 35px;
    }

    .hero-image {
        max-height: 200px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-image {
        max-height: 150px;
        max-width: 85%;
    }

    .glitch {
        font-size: 2rem;
    }

    .dramatic-text {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 1rem;
        margin: 8px;
    }
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(255,0,0,0.1), transparent 70%);
    padding-top: 80px; /* Account for fixed header */
}

.floating-void {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid #ff0000;
    border-radius: 50%;
    background: transparent;
    animation: float 6s ease-in-out infinite;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.hero-image-container {
    margin-bottom: 15px;
    position: relative;
    z-index: 10;
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    border: 2px solid #ff0000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: contain;
}

.hero-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.8);
}

/* Responsive image sizing */
@media (max-width: 768px) {
    .hero-image {
        max-height: 200px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-image {
        max-height: 150px;
        max-width: 85%;
    }
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-20px); }
}

.glitch {
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: #ffffff;
    letter-spacing: 3px;
    animation: glitch 2s infinite;
}

@keyframes glitch {
    0% { text-shadow: 0.05em 0 0 red, -0.05em -0.025em 0 cyan, -0.025em 0.05em 0 yellow; }
    15% { text-shadow: 0.05em 0 0 red, -0.05em -0.025em 0 cyan, -0.025em 0.05em 0 yellow; }
    16% { text-shadow: -0.05em -0.025em 0 red, 0.025em 0.025em 0 cyan, -0.05em -0.05em 0 yellow; }
    49% { text-shadow: -0.05em -0.025em 0 red, 0.025em 0.025em 0 cyan, -0.05em -0.05em 0 yellow; }
    50% { text-shadow: 0.025em 0.05em 0 red, 0.05em 0 0 cyan, 0 -0.05em 0 yellow; }
    99% { text-shadow: 0.025em 0.05em 0 red, 0.05em 0 0 cyan, 0 -0.05em 0 yellow; }
    100% { text-shadow: -0.025em 0 0 red, -0.025em -0.025em 0 cyan, -0.025em -0.05em 0 yellow; }
}

.subtitle {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #ff0000;
    font-weight: bold;
}

.cta-button {
    background: linear-gradient(45deg, #ff0000, #ff6600);
    color: white;
    padding: 20px 40px;
    font-size: 1.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    margin: 10px;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(255,0,0,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 30px rgba(255,0,0,0.3); }
    50% { box-shadow: 0 0 50px rgba(255,0,0,0.7); }
    100% { box-shadow: 0 0 30px rgba(255,0,0,0.3); }
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(255,0,0,0.8);
}

.warning-banner {
    background: #ff0000;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    animation: blink 1s infinite;
}

/* Contract Address Banner */
.contract-banner {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    border-bottom: 3px solid #ff0000;
    border-top: 1px solid #ff0000;
    padding: 12px 20px;
    position: sticky;
    top: 75px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(255,0,0,0.3);
    backdrop-filter: blur(10px);
}

.contract-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contract-label {
    color: #ff0000;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-address {
    background: rgba(255,0,0,0.1);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 25px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    border: 1px solid rgba(255,0,0,0.3);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    word-break: break-all;
    max-width: 500px;
    text-align: center;
}

.contract-address:hover {
    background: rgba(255,0,0,0.2);
    border-color: #ff0000;
    transform: scale(1.02);
}

.copy-button {
    background: #ff0000;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(255,0,0,0.3);
}

.copy-button:hover {
    background: #ff3333;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(255,0,0,0.5);
}

.copy-button:active {
    transform: scale(0.95);
}

/* Mobile responsiveness for contract banner */
@media (max-width: 768px) {
    .contract-banner {
        padding: 10px 15px;
        top: 65px;
    }
    
    .contract-content {
        gap: 10px;
    }
    
    .contract-label {
        font-size: 0.8rem;
    }
    
    .contract-address {
        font-size: 0.8rem;
        padding: 6px 10px;
        max-width: 300px;
    }
    
    .copy-button {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contract-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .contract-address {
        max-width: 250px;
        font-size: 0.75rem;
    }
}

@keyframes blink {
    50% { opacity: 0.7; }
}

.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.prophecy {
    background: rgba(0,0,0,0.8);
    border: 2px solid #ff0000;
    padding: 40px;
    margin: 40px 0;
    border-radius: 10px;
    position: relative;
}

.prophecy::before {
    content: "⚠️ PROPHECY ⚠️";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff0000;
    padding: 5px 20px;
    border-radius: 15px;
    font-weight: bold;
}

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

.feature-card {
    background: rgba(255,0,0,0.1);
    border: 1px solid #ff0000;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255,0,0,0.3);
}

.testimonial {
    background: rgba(0,0,0,0.6);
    padding: 30px;
    margin: 20px 0;
    border-left: 5px solid #ff0000;
    font-style: italic;
}

.dramatic-text {
    font-size: 2rem;
    text-align: center;
    margin: 5px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.highlight {
    color: #ff0000;
    font-weight: bold;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000; }
    to { text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000; }
}

/* Add void particle effect */
.void-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.void-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff0000;
    border-radius: 50%;
    animation: float-particle 8s linear infinite;
    opacity: 0.6;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced feature cards */
.feature-card {
    background: rgba(255,0,0,0.1);
    border: 1px solid #ff0000;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,0,0,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.feature-card:hover::before {
    animation: shine 0.6s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255,0,0,0.4);
    border-color: #ff3333;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

/* Dramatic text enhancement */
.dramatic-text {
    font-size: 2rem;
    text-align: center;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Links section styling */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.link-item {
    background: rgba(255,0,0,0.05);
    border: 1px solid rgba(255,0,0,0.3);
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.link-item:hover {
    background: rgba(255,0,0,0.1);
    border-color: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,0,0,0.2);
}

.link-item h3 {
    color: #ff0000;
    margin-bottom: 10px;
    font-size: 1rem;
}

.link-item a {
    color: #ffffff;
    text-decoration: none;
    display: block;
}

.link-item a strong {
    color: #ff0000;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.link-item a span {
    color: #cccccc;
    font-size: 0.9rem;
    font-style: italic;
}

.link-item a:hover strong {
    color: #ff3333;
}

@media (max-width: 768px) {
    .links-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .link-item {
        padding: 15px;
    }
}

/* Video Carousel Styling */
.video-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 30px auto;
    background: rgba(0,0,0,0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #ff0000;
    box-shadow: 0 0 30px rgba(255,0,0,0.3);
}

.video-carousel {
    position: relative;
    width: 100%;
    height: 450px;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-slide.active {
    opacity: 1;
}

.video-slide iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    gap: 10px;
    background: rgba(0,0,0,0.9);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,0,0,0.5);
}

.indicator.active {
    background: #ff0000;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255,0,0,0.8);
}

.indicator:hover {
    background: rgba(255,0,0,0.7);
}

.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0,0,0,0.5);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff0000, #ff6600);
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(255,0,0,0.8);
}

/* Mobile responsiveness for video carousel */
@media (max-width: 768px) {
    .video-carousel-container {
        max-width: 95%;
        margin: 20px auto;
    }
    
    .video-carousel {
        height: 250px;
    }
    
    .carousel-indicators {
        padding: 10px;
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .video-carousel {
        height: 200px;
    }
    
    .carousel-indicators {
        padding: 8px;
        gap: 6px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}