 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-gradient: linear-gradient(135deg, #ffffff 0%, #c0c0c0 50%, #808080 100%);
            --secondary-gradient: linear-gradient(135deg, #e0e0e0 0%, #a0a0a0 100%);
            --dark-gradient: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2a2a2a 100%);
            --text-gradient: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
            --glow-color: rgba(255, 255, 255, 0.6);
        }

        body {
             font-family: "Orbitron", sans-serif;
  font-optical-sizing: auto;
            background: var(--dark-gradient);
            color: #ffffff;
            overflow-x: hidden;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(200, 200, 200, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(150, 150, 150, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 1.5rem 2rem;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 1rem 2rem;
            box-shadow: 0 5px 30px rgba(255, 255, 255, 0.2);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .logo img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        filter: brightness(1) contrast(1);
        transition: all 0.3s ease;
    }

    .logo span {
        font-size: 2rem;
        font-weight: bold;
        background: var(--text-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 30px var(--glow-color);
    }

    .logo:hover {
        transform: scale(1.05);
    }

    .logo:hover img {
        filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
    }

    .logo:hover span {
        text-shadow: 0 0 50px var(--glow-color);
    }

        .nav-links {
            display: flex;
            gap: 0.5rem;
            list-style: none;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.8rem;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--primary-gradient);
            border-radius: 25px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .nav-links a:hover::before {
            opacity: 1;
        }

        .nav-links a:hover {
            transform: translateY(-2px);
            color: black;
        }

        /* Burger Menu */
        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: #ffffff;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: right 0.5s ease;
            z-index: 999;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav a {
            color: #ffffff;
            text-decoration: none;
            font-size: 2rem;
            margin: 1.5rem 0;
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.5s ease;
        }

        .mobile-nav.active a {
            opacity: 1;
            transform: translateX(0);
        }

        .mobile-nav a:nth-child(1) { transition-delay: 0.1s; }
        .mobile-nav a:nth-child(2) { transition-delay: 0.2s; }
        .mobile-nav a:nth-child(3) { transition-delay: 0.3s; }

        .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(26, 26, 26, 0.6) 50%, 
        rgba(42, 42, 42, 0.7) 100%);
    z-index: -1;
}

/* Make hero content stand out more */
.hero-content {
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 1;
}

        .hero h1 {
            font-size: 60px;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 50%, #808080 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 3s ease-in-out infinite;
        }

        @keyframes glow {
            0%, 100% { filter: brightness(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5)); }
            50% { filter: brightness(1.3) drop-shadow(0 0 40px rgba(255, 255, 255, 0.8)); }
        }

        .hero p {
            font-size: 1.25rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 3rem;
            background: var(--primary-gradient);
            color: black;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .cta-button:hover::before {
            left: 0;
        }

        .cta-button span {
            position: relative;
            z-index: 1;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
        }

        /* Hero Social Links */
.hero-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}


.hero-social-link {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.hero-social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    opacity: 0.3;
}

.hero-social-link:hover::before {
    width: 100px;
    height: 100px;
}

.hero-social-link img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0.9) contrast(0.9);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.hero-social-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.hero-social-link:hover img {
    filter: brightness(1.2) contrast(1.1);
    transform: scale(1.1);
}

/* Tooltip on hover */
.hero-social-link::after {
    content: attr(data-name);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-social-link:hover::after {
    opacity: 1;
    bottom: -45px;
}

/* Stagger animation for links */
.hero-social-link:nth-child(1) { animation-delay: 0.6s; }
.hero-social-link:nth-child(2) { animation-delay: 0.7s; }
.hero-social-link:nth-child(3) { animation-delay: 0.8s; }
.hero-social-link:nth-child(4) { animation-delay: 0.9s; }
.hero-social-link:nth-child(5) { animation-delay: 1s; }
.hero-social-link:nth-child(6) { animation-delay: 1.1s; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-social-links {
        gap: 1rem;
    }
    
    .hero-social-link {
        width: 45px;
        height: 45px;
    }
    
    .hero-social-link img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero-social-links {
        gap: 0.75rem;
    }
    
    .hero-social-link {
        width: 40px;
        height: 40px;
    }
    
    .hero-social-link img {
        width: 20px;
        height: 20px;
    }
    
    /* Hide tooltips on mobile */
    .hero-social-link::after {
        display: none;
    }
}

/* Add fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        /* About Section */
.about {
    padding: 5rem 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--glow-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: #e0e0e0;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.5s ease;
}

.about-image:hover {
    transform: translateY(-10px);
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}



/* Scroll Animation */
.about-text {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease forwards;
    animation-delay: 0.2s;
}

.about-image {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease forwards;
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-text h2 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .about-text p {
        font-size: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 1.5rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .about-image {
        border-radius: 15px;
    }
}

/* Roadmap Section */
.roadmap {
    padding: 5rem 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
    overflow: hidden;
}



@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.roadmap-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.roadmap-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--glow-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.roadmap-timeline {
    position: relative;
    padding: 2rem 0;
}

/* Vertical line */
.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 10%, 
        rgba(255, 255, 255, 0.3) 90%, 
        transparent 100%);
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4rem;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease forwards;
}

.roadmap-item:nth-child(1) { animation-delay: 0.2s; }
.roadmap-item:nth-child(2) { animation-delay: 0.4s; }
.roadmap-item:nth-child(3) { animation-delay: 0.6s; }
.roadmap-item:nth-child(4) { animation-delay: 0.8s; }
.roadmap-item:nth-child(5) { animation-delay: 1s; }

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.roadmap-marker {
    width: 100px;
    height: 100px;
    background: var(--dark-gradient);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.roadmap-item:hover .roadmap-marker {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.phase-number {
    font-size: 2rem;
    font-weight: bold;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roadmap-content {
    margin-left: 3rem;
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.roadmap-item:hover .roadmap-content {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}

.roadmap-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roadmap-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #c0c0c0;
    margin-bottom: 1rem;
}

.status {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status.completed {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #000;
}

.status.in-progress {
    background: var(--primary-gradient);
    color: #000;
    animation: pulse 2s ease-in-out infinite;
}

.status.upcoming {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .roadmap-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .roadmap-timeline::before {
        left: 35px;
    }
    
    .roadmap-marker {
        width: 70px;
        height: 70px;
    }
    
    .phase-number {
        font-size: 1.5rem;
    }
    
    .roadmap-content {
        margin-left: 2rem;
        padding: 1.5rem;
    }
    
    .roadmap-content h3 {
        font-size: 1.4rem;
    }
    
    .roadmap-content p {
        font-size: 0.9rem;
    }
    
    .status {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

@media (max-width: 480px) {
    .roadmap-marker {
        width: 50px;
        height: 50px;
    }
    
    .phase-number {
        font-size: 1.2rem;
    }
    
    .roadmap-timeline::before {
        left: 25px;
    }
    
    .roadmap-content {
        margin-left: 1.5rem;
    }
}

/* Tokenomics Section */
.tokenomics {
    padding: 5rem 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.tokenomics-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tokenomics-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--glow-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Price Mission Display */
.price-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.current-price, .mission-target {
    text-align: center;
}

.price-label, .target-label {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.price-display, .target-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.price-symbol, .target-symbol {
    font-size: 3rem;
    margin-right: 0.5rem;
    opacity: 0.5;
}

.price-value {
    font-size: 4rem;
    font-weight: bold;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: priceGlow 2s ease-in-out infinite;
}

.target-value {
    font-size: 5rem;
    font-weight: bold;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 50px var(--glow-color);
}

@keyframes priceGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4ade80 0%, #22c55e 50%, var(--primary-gradient) 100%);
    border-radius: 5px;
    transition: width 1s ease;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
}

.progress-text {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Token Distribution Cards */
.token-distribution {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.distribution-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.distribution-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.distribution-card:hover::before {
    opacity: 1;
}

.distribution-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(0.3);
}

.distribution-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-value {
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.card-description {
    font-size: 0.9rem;
    opacity: 0.7;
    color: #c0c0c0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tokenomics-title {
        font-size: 2rem;
    }
    
    .price-mission {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .price-value {
        font-size: 3rem;
    }
    
    .target-value {
        font-size: 4rem;
    }
    
    .price-symbol, .target-symbol {
        font-size: 2rem;
    }
    
    .token-distribution {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .distribution-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .price-value {
        font-size: 2.5rem;
    }
    
    .target-value {
        font-size: 3rem;
    }
    
    .distribution-card h3 {
        font-size: 1.1rem;
    }
    
    .card-value {
        font-size: 2rem;
    }
}

/* Token Stats Banner */
.token-stats-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box {
    text-align: center;
    padding: 1rem;
}

.stat-box .stat-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.stat-box .stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-break: break-word;
}

/* Tablet responsiveness */
@media (max-width: 768px) {
    .token-stats-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem 1rem;
        margin: 2rem 0;
    }
    
    .stat-box {
        padding: 0.75rem 0.5rem;
    }
    
    .stat-box .stat-label {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
        margin-bottom: 0.3rem;
    }
    
    .stat-box .stat-value {
        font-size: 1.2rem;
        line-height: 1.3;
    }
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .token-stats-banner {
        gap: 0.75rem;
        padding: 1rem 0.75rem;
    }
    
    .stat-box {
        padding: 0.5rem 0.25rem;
    }
    
    .stat-box .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.3px;
    }
    
    .stat-box .stat-value {
        font-size: 1rem;
    }
}

/* Very small screens */
@media (max-width: 350px) {
    .token-stats-banner {
        grid-template-columns: 1fr;
    }
    
    .stat-box .stat-value {
        font-size: 0.9rem;
    }
}

/* Price change colors */
.stat-value.positive-change {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-value.negative-change {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Why XRPL Section - Compact Version */
.why-xrpl {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-xrpl h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.xrpl-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.benefit {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.benefit:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .why-xrpl {
        margin-top: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .why-xrpl h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .xrpl-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .benefit {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .xrpl-benefits {
        grid-template-columns: 1fr;
    }
    
    .benefit {
        padding: 0.5rem 0.75rem;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .token-stats-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .stat-box .stat-value {
        font-size: 1.4rem;
    }
    
    .xrpl-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Price change indicators */
.price-up {
    color: #4ade80;
    font-size: 0.8em;
    margin-left: 0.5rem;
}

.price-down {
    color: #ef4444;
    font-size: 0.8em;
    margin-left: 0.5rem;
}

/* XRPL Image Container */
.xrpl-image-container {
    margin-top: 2rem;
    position: relative;
    width: 100%;
    padding-bottom: 66.67%; /* 3:2 aspect ratio (2/3 = 0.6667) */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.xrpl-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.xrpl-image-container:hover img {
    transform: scale(1.05);
}

/* Optional: Add a subtle overlay effect */
.xrpl-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.xrpl-image-container:hover::after {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .xrpl-image-container {
        margin-top: 1.5rem;
        border-radius: 10px;
    }
}

/* How to Buy Section */
.howtobuy {
    padding: 5rem 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.howtobuy-container {
    max-width: 1200px;
    margin: 0 auto;
}

.howtobuy-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--glow-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.step-number {
    font-size: 4rem;
    font-weight: bold;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #c0c0c0;
    margin-bottom: 2rem;
}

.step-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.step-button:hover::before {
    left: 0;
}

.step-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.step-button svg {
    transition: transform 0.3s ease;
}

.step-button:hover svg {
    transform: translate(3px, -3px);
}

/* Trading Info */
.trading-info {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.trading-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.token-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.detail-label {
    font-size: 0.9rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-break: break-all;
}

/* Copyable Address Styles */
.detail-value.copyable {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.detail-value.copyable:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.copy-icon {
    font-size: 1rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.detail-value.copyable:hover .copy-icon {
    opacity: 1;
}

.copy-feedback {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: "Orbitron", sans-serif;
}

.copy-feedback.show {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .howtobuy-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-card {
        padding: 2rem;
    }
    
    .step-number {
        font-size: 3rem;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    .step-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .trading-info {
        padding: 2rem;
    }
    
    .token-details {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .detail-value {
        font-size: 0.9rem;
    }
    
    .detail-value.copyable {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }
    
    .copy-icon {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .howtobuy {
        padding: 4rem 1.5rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-number {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-button {
        width: 100%;
        justify-content: center;
    }
    
    .trading-info {
        padding: 1.5rem;
    }
    
    .trading-info p {
        font-size: 1rem;
    }
    
    .detail-label {
        font-size: 0.8rem;
    }
    
    .detail-value.copyable {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
        word-break: break-all;
        max-width: 280px;
    }
}

/* Community Section */
.community {
    padding: 5rem 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
    overflow: hidden;
}


.community-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

/* Community Image Container */
.community-image-container {
    margin-top: 2rem;
    position: relative;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 66.67%; /* 3:2 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.community-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.community-image-container:hover img {
    transform: scale(1.05);
}

/* Gradient overlay effect */
.community-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.community-image-container:hover::after {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .community-image-container {
        margin-top: 1.5rem;
        border-radius: 10px;
    }
}

.community-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--glow-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.community-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 3rem;
    color: #c0c0c0;
}

.community-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.community-button {
    position: relative;
    display: block;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.community-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.5s ease;
}

.x-button::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.telegram-button::before {
    background: linear-gradient(90deg, transparent, rgba(42, 171, 238, 0.2), transparent);
}

.community-button:hover::before {
    left: 100%;
}

.community-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.x-button:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.telegram-button:hover {
    border-color: rgba(42, 171, 238, 0.5);
    background: rgba(42, 171, 238, 0.1);
}

.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.community-button svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.community-button:hover svg {
    transform: scale(1.1);
}

.x-button svg {
    color: #ffffff;
}

.telegram-button svg {
    color: #2AABEE;
}

.community-button span {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
}

.member-count {
    font-size: 0.9rem;
    opacity: 0.6;
    color: #c0c0c0;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .community-title {
        font-size: 2rem;
    }
    
    .community-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .community-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .community-button {
        padding: 1.25rem;
    }
    
    .community-button span {
        font-size: 1.1rem;
    }
    
    .community-stats {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .community {
        padding: 4rem 1.5rem;
    }
    
    .community-button svg {
        width: 24px;
        height: 24px;
    }
    
    .member-count {
        font-size: 0.85rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Community Message */
.community-message {
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.community-message::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.message-main {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.message-sub {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #c0c0c0;
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .community-message {
        padding: 2rem 1.5rem;
    }
    
    .message-main {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .message-sub {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .community-message {
        padding: 1.5rem 1rem;
    }
    
    .message-main {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .message-sub {
        font-size: 0.9rem;
    }
}

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 2rem 2rem 1.5rem;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-links a:hover {
            background: var(--primary-gradient);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
        }

        .footer-text {
            opacity: 0.8;
            margin-top: 1rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            

            .hero h1 {
                font-size: 3rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .about h2 {
                font-size: 2rem;
            }

            header {
                padding: 1rem 1.5rem;
            }
        }

         @media (max-width: 1000px) {
            .burger {
                display: flex;
            }

            .nav-links {
                display: none;
            }
        }


        /* Active Navigation Link Styles */
.nav-links a.active {
    background: var(--primary-gradient);
    color: #000;
}

.nav-links a.active::before {
    opacity: 1;
}

.mobile-nav a.active {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.mobile-nav a.active::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

/* Smooth transition for active state */
.nav-links a,
.mobile-nav a {
    transition: all 0.3s ease;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    opacity: 0.3;
    z-index: -1;
}

.scroll-to-top:hover::before {
    width: 60px;
    height: 60px;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

/* Pulse animation when visible */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.scroll-to-top.visible {
    animation: pulse-glow 2s infinite;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}