* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0066cc;
    --dark-blue: #003d7a;
    --light-blue: #0088dd;
    --accent-blue: #0099ff;
    --white: #ffffff;
    --black: #000000;
    --dark-gray: #0a0a0a;
    --mid-gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --text-gray: #a0a0a0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--black) 100%);
}

.particle {
    position: absolute;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    width: 50px;
    height: 50px;
    top: 50%;
    right: 10%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    width: 70px;
    height: 70px;
    bottom: 20%;
    right: 25%;
    animation-delay: 8s;
}

.particle:nth-child(6) {
    width: 90px;
    height: 90px;
    top: 70%;
    left: 15%;
    animation-delay: 10s;
}

.particle:nth-child(7) {
    width: 55px;
    height: 55px;
    top: 30%;
    left: 50%;
    animation-delay: 12s;
}

.particle:nth-child(8) {
    width: 75px;
    height: 75px;
    bottom: 40%;
    right: 5%;
    animation-delay: 14s;
}

.particle:nth-child(9) {
    width: 65px;
    height: 65px;
    top: 60%;
    left: 70%;
    animation-delay: 16s;
}

.particle:nth-child(10) {
    width: 85px;
    height: 85px;
    bottom: 10%;
    left: 40%;
    animation-delay: 18s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 50px) scale(0.9);
    }
    75% {
        transform: translate(40px, 30px) scale(1.05);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 30px rgba(0, 102, 204, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-apex {
    color: var(--light-blue);
    text-shadow: 0 0 20px rgba(0, 136, 221, 0.5);
}

.logo-token {
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--light-blue), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(20deg);
    }
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Crypto Coin Animation */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.crypto-coin {
    width: 400px;
    height: 400px;
    perspective: 1000px;
    animation: float-coin 6s ease-in-out infinite;
}

.coin-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate-coin 10s linear infinite;
}

.coin-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 900;
    box-shadow: 
        0 0 60px rgba(0, 102, 204, 0.6),
        inset 0 0 40px rgba(0, 136, 221, 0.3);
    border: 5px solid var(--light-blue);
}

@keyframes float-coin {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes rotate-coin {
    0% {
        transform: rotateY(0deg) rotateX(20deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(20deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    margin: 0 auto 0.5rem;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-blue);
    border-radius: 2px;
    margin-top: 8px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
}

/* Stats Section */
.stats-section {
    background: var(--mid-gray);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.3);
}

.stat-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin: 1rem 0;
}

.stat-card p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.about-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.floating-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.floating-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
}

.floating-card:nth-child(3) {
    grid-column: 1 / -1;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    animation: glow-rotation 4s linear infinite;
}

@keyframes glow-rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.floating-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.floating-card h4 {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

/* Features Section */
.features-section {
    background: var(--mid-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-blue), var(--light-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.4);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tokenomics-chart {
    display: flex;
    justify-content: center;
}

.chart-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.pie-chart {
    filter: drop-shadow(0 0 30px rgba(0, 102, 204, 0.3));
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.chart-center h3 {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.chart-center p {
    color: var(--text-gray);
}

.tokenomics-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.token-detail {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.token-detail:hover {
    transform: translateX(10px);
    border-left-color: var(--primary-blue);
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.color-indicator {
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

.token-detail h4 {
    font-size: 1.3rem;
}

.percentage {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin: 0.5rem 0;
}

.description {
    color: var(--text-gray);
}

/* Roadmap Section */
.roadmap-section {
    background: var(--mid-gray);
}

.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--light-gray);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 18px;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--light-gray);
    border: 4px solid var(--black);
    z-index: 1;
}

.timeline-marker.completed {
    background: var(--primary-blue);
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.6);
}

.timeline-marker.active {
    background: var(--white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    animation: pulse-marker 2s infinite;
}

@keyframes pulse-marker {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.timeline-content {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.timeline-content:hover {
    transform: translateX(10px);
    border-left-color: var(--primary-blue);
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.2);
}

.timeline-phase {
    display: inline-block;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    padding: 6rem 2rem;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.social-link:hover {
    transform: translateX(10px);
    background: var(--primary-blue);
}

.social-link i {
    font-size: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-details i {
    color: var(--primary-blue);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.3);
}

.contact-form textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-blue);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
    color: var(--text-gray);
}

/* Scroll Animations */
[data-scroll] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

[data-scroll].active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .crypto-coin {
        width: 300px;
        height: 300px;
    }
    
    .about-content,
    .tokenomics-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .navbar .btn-primary {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .crypto-coin {
        width: 250px;
        height: 250px;
    }
    
    .coin-front {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-container {
        width: 300px;
        height: 300px;
    }
}

/* Hero Coin GIF */
.hero-coin-gif {
    width: 400px;
    height: 400px;
    object-fit: contain;
    animation: float-coin 6s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(0, 102, 204, 0.6));
}

/* Traveling Coin GIFs */
.traveling-coin-gif {
    width: 250px;
    height: 250px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
    filter: drop-shadow(0 0 30px rgba(0, 102, 204, 0.5));
    z-index: 0;
}

.about-visual {
    position: relative;
}

.about-visual .floating-card {
    position: relative;
    z-index: 1;
}

.features-coin-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.features-coin-gif {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 102, 204, 0.5));
}

/* Crypto Market Section */
.crypto-market-section {
    background: var(--mid-gray);
    padding: 6rem 0;
}

.crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.crypto-card {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.crypto-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.3);
}

.crypto-card.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.crypto-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.crypto-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.crypto-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.crypto-symbol {
    color: var(--text-gray);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.crypto-price {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
}

.crypto-change {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
}

.crypto-change.positive {
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
}

.crypto-change.negative {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.crypto-stats {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.crypto-stat {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.crypto-stat-label {
    color: var(--text-gray);
}

.crypto-stat-value {
    color: var(--white);
    font-weight: 600;
}

.crypto-stat-value.positive {
    color: #00ff00;
}

.crypto-stat-value.negative {
    color: #ff0000;
}

/* Responsive adjustments for traveling coins */
@media (max-width: 768px) {
    .hero-coin-gif {
        width: 300px;
        height: 300px;
    }
    
    .traveling-coin-gif {
        width: 150px;
        height: 150px;
        opacity: 0.5;
    }
    
    .features-coin-gif {
        width: 150px;
        height: 150px;
    }
    
    .crypto-grid {
        grid-template-columns: 1fr;
    }
}

/* Deposit Methods Section */
.deposit-section {
    background: var(--dark-gray);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.deposit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.1), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 136, 221, 0.1), transparent 50%);
    pointer-events: none;
}

.deposit-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.deposit-card {
    background: linear-gradient(145deg, var(--mid-gray), var(--light-gray));
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    border: 2px solid rgba(0, 102, 204, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.deposit-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(0, 61, 122, 0.6), rgba(0, 136, 221, 0.6), rgba(0, 102, 204, 0.6));
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.deposit-card:hover::before {
    opacity: 1;
}

.deposit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.4);
    border-color: var(--light-blue);
}

.deposit-icon-wrapper {
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.2), transparent 70%);
    border-radius: 50%;
    position: relative;
}

.deposit-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    animation: rotate-border 8s linear infinite;
    opacity: 0.3;
}

@keyframes rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.deposit-coin-gif {
    width: 220px;
    height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(0, 136, 221, 0.8));
    animation: float-deposit 4s ease-in-out infinite;
}

@keyframes float-deposit {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.deposit-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 136, 221, 0.5);
}

.deposit-card > p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.deposit-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.deposit-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--white);
    font-size: 1.05rem;
}

.deposit-features i {
    color: var(--light-blue);
    font-size: 1.2rem;
    min-width: 20px;
}

.deposit-card .btn-primary {
    width: 100%;
    max-width: 300px;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.deposit-card .btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.deposit-card .btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* Responsive for Deposit Section */
@media (max-width: 968px) {
    .deposit-methods {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .deposit-icon-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .deposit-icon-wrapper::after {
        width: 230px;
        height: 230px;
    }
    
    .deposit-coin-gif {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .deposit-card {
        padding: 2rem 1.5rem;
    }
    
    .deposit-icon-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .deposit-icon-wrapper::after {
        width: 180px;
        height: 180px;
    }
    
    .deposit-coin-gif {
        width: 130px;
        height: 130px;
    }
    
    .deposit-card h3 {
        font-size: 1.5rem;
    }
}

