/* ===================================
   BULL OF WALL STREET DEGEN - CSS
   INSANE VIRAL MEMECOIN WEBSITE
   =================================== */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #00FF88;
    --primary-dark: #00CC6E;
    --secondary: #FF0080;
    --accent: #FFD700;
    --dark: #0A0E27;
    --dark-light: #1A1F3A;
    --text: #FFFFFF;
    --text-gray: #B8C1EC;
    --gradient-1: linear-gradient(135deg, #00FF88 0%, #00FFFF 100%);
    --gradient-2: linear-gradient(135deg, #FF0080 0%, #FF6B35 100%);
    --gradient-3: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    /*--gradient-bull: linear-gradient(135deg, #00FF88 0%, #00D4FF 50%, #9D00FF 100%);*/
	--gradient-bull: linear-gradient(135deg, #FF4500 0%, #FF7E00 50%, #FFD700 100%);
	/*--gradient-bull: linear-gradient(135deg, #FF7E00 0%, #00FF7F 50%, #0081FF 100%);*/
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-display: 'Russo One', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Effects */
    --shadow-glow: 0 0 30px rgba(0, 255, 136, 0.5);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
}

body {
    font-family: var(--font-main);
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.logo-icon {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-image: url('../favicon/android-chrome-192x192.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: pulse 2s ease-in-out infinite;
    vertical-align: middle;
}

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

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

/* ===== VIDEO BACKGROUND ===== */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.bg-video:first-child {
    opacity: 0.7;
    animation: video-fade-1 20s ease-in-out infinite;
}

.bg-video:nth-child(2) {
    opacity: 0;
    animation: video-fade-2 20s ease-in-out infinite;
}

@keyframes video-fade-1 {
    0%, 45%, 100% { opacity: 0.7; }
    50%, 95% { opacity: 0; }
}

@keyframes video-fade-2 {
    0%, 45% { opacity: 0; }
    50%, 95% { opacity: 0.7; }
    100% { opacity: 0; }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(10, 14, 39, 0.3) 0%, 
        rgba(10, 14, 39, 0.5) 50%,
        rgba(10, 14, 39, 0.7) 100%);
    z-index: 1;
}

.dollar-signs {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Animated dollar signs */
@keyframes float-dollar {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(0, 255, 136, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.logo-icon {
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.logo-text {
    background: var(--gradient-bull);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.buy-btn {
    background: var(--gradient-1);
    color: var(--dark);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

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

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    z-index: 1;
}

.hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 128, 0.2);
    border: 2px solid var(--secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: glow-pulse 2s ease-in-out infinite;
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.title-main {
    display: block;
    color: var(--text);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.title-degen {
    display: block;
    background: var(--gradient-bull);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 5rem;
    animation: rainbow-text 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.highlight {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--dark);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.9);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.05);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Hero image removed - videos are now the main focus */

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--primary);
    animation: bounce 2s infinite;
}

/* ===== ALERT BANNER ===== */
.alert-banner {
    background: linear-gradient(90deg, #FF0080, #FF6B35, #FFD700, #FF6B35, #FF0080);
    background-size: 200% 100%;
    animation: gradient-shift 3s linear infinite;
    padding: 1rem 0;
    overflow: hidden;
}

.alert-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    animation: slide-text 20s linear infinite;
}

/* ===== VIDEO SECTION ===== */
.video-section {
    background: linear-gradient(180deg, 
        rgba(26, 31, 58, 0.95) 0%, 
        rgba(10, 14, 39, 0.98) 100%);
    padding: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(157, 0, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.video-section .container {
    position: relative;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(0, 255, 136, 0.3);
    border-bottom: none;
    transition: all 0.4s ease;
    background: rgba(10, 14, 39, 0.8);
    position: relative;
    display: flex; /* ✅ Flexbox */
    flex-direction: column; /* ✅ Layout em coluna: título → vídeo → footer */
}

.video-footer {
    flex-grow: 1; /* ✅ CRESCE para preencher TODO o espaço restante */
    min-height: 0.5rem; /* Altura mínima */
    background: var(--gradient-1); /* Cor verde/ciano */
    border-radius: 0 0 17px 17px; /* Cantos arredondados */
}

/*
.video-card {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(0, 255, 136, 0.3);
    transition: all 0.4s ease;
    background: rgba(10, 14, 39, 0.8);
    position: relative;
}
*/

.video-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-1);
    border-radius: 20px;
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.video-card:hover::before {
    opacity: 1;
}

.video-card:hover {
    border-color: transparent;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.8), 0 0 100px rgba(157, 0, 255, 0.4);
    transform: translateY(-10px) scale(1.02);
}

.video-title {
    padding: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    background: var(--gradient-1);
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-card video {
    width: 100%;
    display: block;
    background: #000;
    object-fit: cover;
    flex-shrink: 0; /* ✅ NÃO encolhe */
    border: none;
}

.video-card video {
    width: 100%;
    display: block;
    background: #000;
    object-fit: cover;
    flex-shrink: 0; /* ✅ NÃO encolhe */
    border: none;
}

/* ✅ ADICIONE ESTE BLOCO AQUI ✅ */
/* Remove controles do vídeo (barra de play/pause) */
.video-card video::-webkit-media-controls {
    display: none !important;
}

.video-card video::-webkit-media-controls-enclosure {
    display: none !important;
}

/* Para Firefox */
.video-card video::-moz-media-controls {
    display: none !important;
}

/* Remove controles também no hover e focus */
.video-card video:focus::-webkit-media-controls,
.video-card video:hover::-webkit-media-controls {
    display: none !important;
}
/* ✅ FIM DO BLOCO ADICIONADO ✅ */


/*
.video-card video {
    width: 100%;
    display: block;
    background: #000;
}
*/

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-bull);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
}

.text-gradient {
    background: var(--gradient-bull);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    position: relative;
    background: linear-gradient(180deg, 
        rgba(10, 14, 39, 0.5) 0%, 
        rgba(26, 31, 58, 0.8) 50%,
        rgba(10, 14, 39, 0.5) 100%);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 128, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(26, 31, 58, 0.5);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.about-images img {
    width: 100%;
    border-radius: 20px;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-glow);
}

.pulse-animation {
    animation: pulse-scale 3s ease-in-out infinite;
}

/* ===== STORY TIMELINE ===== */
.story-section {
    background: linear-gradient(180deg, 
        rgba(10, 14, 39, 0.95) 0%, 
        rgba(26, 31, 58, 0.9) 50%,
        rgba(10, 14, 39, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '📈💰🚀🔥💎🌙';
    position: absolute;
    top: 50%;
    left: -10%;
    font-size: 15rem;
    opacity: 0.03;
    transform: translateY(-50%);
    letter-spacing: 3rem;
    pointer-events: none;
    animation: emoji-drift 30s linear infinite;
}

@keyframes emoji-drift {
    0% { left: -10%; }
    100% { left: 110%; }
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-icon {
    grid-column: 2;
}

.timeline-item:nth-child(even)::after {
    grid-column: 3;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    z-index: 2;
}

.timeline-content {
    background: rgba(26, 31, 58, 0.8);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== GALLERY SECTION ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
}

/* ===== TOKENOMICS SECTION ===== */
.tokenomics-section {
    background: linear-gradient(180deg, 
        rgba(10, 14, 39, 0.98) 0%, 
        rgba(26, 31, 58, 0.95) 50%,
        rgba(10, 14, 39, 0.98) 100%);
    position: relative;
}

.tokenomics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            rgba(0, 255, 136, 0.03) 1px,
            transparent 2px,
            transparent 100px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            rgba(0, 255, 136, 0.03) 1px,
            transparent 2px,
            transparent 100px
        );
    pointer-events: none;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tokenomics-card {
    background: rgba(10, 14, 39, 0.9);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tokenomics-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(0, 255, 136, 0.3),
        transparent 30%
    );
    animation: card-rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tokenomics-card:hover::before {
    opacity: 1;
}

.tokenomics-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: rgba(10, 14, 39, 0.95);
    border-radius: 18px;
    z-index: 0;
}

.tokenomics-card > * {
    position: relative;
    z-index: 1;
}

.tokenomics-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.6), 0 10px 40px rgba(0, 0, 0, 0.5);
}

@keyframes card-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.token-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.tokenomics-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.token-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.token-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.tokenomics-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-box {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 2rem;
}

.info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.info-box p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===== JOIN SECTION ===== */
.join-section {
    text-align: center;
    background: 
        radial-gradient(ellipse at center top, rgba(0, 255, 136, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at center bottom, rgba(157, 0, 255, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 31, 58, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.join-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-conic-gradient(
            from 0deg at 50% 50%,
            transparent 0deg,
            rgba(0, 255, 136, 0.1) 2deg,
            transparent 4deg,
            transparent 10deg
        );
    animation: spin-slow 60s linear infinite;
    pointer-events: none;
}

@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.join-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.social-btn {
    display: fixed;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: rgba(26, 31, 58, 0.8);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 150px;
}

.social-btn i {
    font-size: 2.5rem;
}

.social-btn:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.social-btn.telegram:hover {
    border-color: #0088cc;
    box-shadow: 0 0 30px rgba(0, 136, 204, 0.5);
}

.social-icon-x {
    width: 2.5rem;
    height: 2.5rem;
    fill: currentColor;
}

.social-btn.twitter .social-icon-x {
    fill: #000000;  /* Preto oficial do X */
}

.social-btn.twitter {
    background: rgba(0, 0, 0, 0.8);
    border-color: #000000;
}

.social-btn.twitter:hover {
    background: #000000;
    border-color: #FFFFFF;
}


.social-btn.discord:hover {
    border-color: #5865F2;
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.5);
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(26, 31, 58, 0.9);
    border: 3px solid var(--primary);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 
        0 0 50px rgba(0, 255, 136, 0.8),
        0 0 100px rgba(0, 255, 136, 0.4),
        inset 0 0 50px rgba(0, 255, 136, 0.1);
    position: relative;
    z-index: 1;
    animation: cta-pulse 3s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% { 
        box-shadow: 
            0 0 50px rgba(0, 255, 136, 0.8),
            0 0 100px rgba(0, 255, 136, 0.4),
            inset 0 0 50px rgba(0, 255, 136, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 70px rgba(0, 255, 136, 1),
            0 0 140px rgba(0, 255, 136, 0.6),
            inset 0 0 70px rgba(0, 255, 136, 0.15);
    }
}

.cta-box h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.btn-mega {
    background: var(--gradient-bull);
    color: var(--dark);
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
    animation: pulse-scale 2s ease-in-out infinite;
}

.btn-mega:hover {
    animation: none;
    transform: scale(1.1);
    box-shadow: 0 0 80px rgba(0, 255, 136, 1);
}

.disclaimer {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(10, 14, 39, 0.95);
    padding: 3rem 0 2rem;
    border-top: 2px solid rgba(0, 255, 136, 0.2);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.disclaimer-footer {
    color: var(--text-gray);
    font-size: 0.8rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.7;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

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

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

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 0, 128, 0.5); }
    50% { box-shadow: 0 0 30px rgba(255, 0, 128, 0.8); }
}

@keyframes rainbow-text {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(60deg); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .title-degen {
        font-size: 4rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .story-timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 2rem;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 2;
        text-align: left;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .title-degen {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        min-width: 200px;
    }
    
    .cta-box {
        padding: 2rem;
    }
    
    .btn-mega {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

a.btn {
    text-decoration: none !important;
}
