/* styles.css */

:root {
    --primary-color: #f8b500;
    --secondary-color: #ff6b35;
    --dark-bg: #1a1a2e;
    --light-bg: #16213e;
    --cream-bg: #F3DBBE;
    --text-light: #e8e8e8;
    --text-dark: #333;
    --gradient-1: linear-gradient(135deg, #f8b500 0%, #ff6b35 100%);
    --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Short Stack', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--cream-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-fadeInDown {
    animation: fadeInDown 0.8s ease-out forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.5);
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: rotate(360deg);
}

.nav-link {
    color: var(--text-light) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-icon {
    width: 20px;
    height: 20px;
}

.chain-icon {
    width: 20px;
    height: 20px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-1);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-cta {
    background: var(--gradient-1);
    border: none;
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 181, 0, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(248, 181, 0, 0.5);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 50% 50%, rgba(248, 181, 0, 0.15) 0%, transparent 50%);
    animation: pulse 10s infinite;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-title b {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin: 0.5rem;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-5px);
}

.cmc-icon {
    fill: #3961fb;
}

/* Quote Section */
.quote-section {
    background: var(--cream-bg);
}

.quote-box {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    cursor: pointer;
}

.quote-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.quote-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
    animation: float 3s ease-in-out infinite;
}

.quote-author {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
}

/* Multi-Chain Section */
.multichain-section {
    background: white;
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.section-title b {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chain-card {
    background: var(--cream-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
}

.chain-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.chain-card img {
    transition: transform 0.3s ease;
}

.chain-card:hover img {
    transform: scale(1.05) rotate(5deg);
}

/* Timeline */
.history-section {
    background: var(--cream-bg);
    padding: 5rem 0;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--primary-color);
    z-index: 10;
    animation: pulse 2s infinite;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 45%;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.timeline-date {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Universe Section */
.universe-section {
    background: white;
    padding: 5rem 0;
}

.section-subtitle {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.video-overlay {
    position: relative;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.video-overlay:hover {
    transform: scale(1.02);
}

.video-overlay img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button svg {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
}

.video-overlay:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

.feature-card {
    background: var(--cream-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

/* Truth Section */
.truth-section {
    background: var(--cream-bg);
    padding: 5rem 0;
}

.alert-title {
    color: var(--secondary-color);
    font-size: 2.5rem;
    animation: pulse 2s infinite;
    text-shadow: 2px 2px 10px rgba(255, 107, 53, 0.3);
}

.truth-card {
    background: white;
    border-left: 5px solid var(--secondary-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.truth-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-left-width: 8px;
}

.truth-card h5 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: white;
    padding: 5rem 0;
}

.cta-box {
    background: var(--gradient-1);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.cta-box h3 {
    color: white;
    font-size: 2rem;
}

.community-img {
    max-width: 600px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.community-img:hover {
    transform: scale(1.05);
}

/* Community Section */
.community-section {
    background: var(--cream-bg);
    padding: 5rem 0;
}

.btn-social {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    color: white;
}

.btn-twitter {
    background: #1DA1F2;
}

.btn-telegram {
    background: #0088cc;
}

.btn-social:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-icon {
    font-style: normal;
    margin-right: 0.5rem;
    font-size: 1.3rem;
}

/* Donate Section */
.donate-section {
    background: white;
    padding: 5rem 0;
}

.donate-card {
    background: var(--cream-bg);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.donate-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.donate-card img {
    width: 100%;
    height: auto;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-1);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(248, 181, 0, 0.4);
}

.btn-outline-light {
    border: 2px solid white;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    transition: all 0.3s ease;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--dark-bg) !important;
    transform: translateY(-3px);
}

.btn-light {
    background: white;
    color: var(--text-dark) !important;
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--light-bg);
    color: var(--text-light);
    border-top: 3px solid var(--primary-color);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding-left: 70px;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .quote-text {
        font-size: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}
