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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    background-color: #000;
    border-bottom: 1px solid #333;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.nav-logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-text { color: #fff; }
.logo-highlight { 
    color: #ffd700; 
    margin: 0 -6px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-link:hover { color: #ffd700; }

.nav-right {
    display: flex;
    align-items: center;
}

.twitter-btn {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    line-height: 1;
}

.twitter-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    padding-top: 60px;
}

.hero-background {
    background: linear-gradient(135deg, #2a1a0a 0%, #1a0a0a 50%, #000 100%);
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Muted Overlay */
.muted-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    pointer-events: none;
}

.unmute-btn {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: 2px solid #ffd700;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    pointer-events: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.unmute-btn:hover {
    background-color: #ffd700;
    color: #000;
    transform: scale(1.05);
}

.unmute-btn i {
    font-size: 18px;
}

.unmute-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

/* More Videos Section */
.more-videos-section {
    padding: 60px 0;
    background-color: #000;
}

.section-title {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.more-videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.card-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 215, 0, 0.9);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.card-info {
    padding: 15px;
}

.card-stars {
    color: #ffd700;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.card-date {
    color: #888;
    font-size: 12px;
    margin-bottom: 8px;
}

.card-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

/* Crypto Section */
.crypto-section {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.tokenomics-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #2a2a2a;
    border-radius: 12px;
    border: 2px solid #ffd700;
}

.tokenomics-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.tokenomics-label {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tokenomics-value {
    color: #ffd700;
    font-size: 2rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* CA Box */
.ca-box {
    margin-top: 40px;
    padding: 30px 20px;
    background-color: #2a2a2a;
    border-radius: 12px;
    border: 2px solid #ffd700;
    text-align: center;
    width: 100%;
}

.ca-text {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 700;
    word-break: break-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Footer */
.footer {
    background-color: #000;
    border-top: 1px solid #333;
    padding: 40px 0;
    text-align: center;
}

.footer p { color: #888; margin-bottom: 10px; }

.disclaimer {
    margin-top: 30px;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.disclaimer p {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .more-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tokenomics-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    
    .hero {
        display: none;
    }
    
    .more-videos-section {
        padding-top: 80px;
    }
    
    .more-videos-section .section-title {
        display: none;
    }
    
    .more-videos-grid {
        grid-template-columns: 1fr;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .unmute-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
} 