/* --- Global Styles & Background --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg,
            #0a0a0a 0%,
            #111111 25%,
            #1a1a1a 50%,
            #222222 75%,
            #000000 100%);


    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* --- Bubble & Particle Effects --- */
.bg-animation,
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.floating-shape:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: particleFloat 10s linear infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10%,
    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

/* --- Navigation Bar --- */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    z-index: 1001;
    background: rgba(0, 20, 50, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.nav-logo img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px;
}

.nav-menu a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.nav-menu .nav-btn {
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu .nav-join-btn {
    background-color: #7289da;
    color: white;
}

.nav-menu .nav-staff-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1002;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

/* --- Homepage Content Styles --- */
.home-page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 40px 40px 40px;
    width: 100%;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.text-content {
    animation: slideInFromLeft 1s ease-out;
}

.title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.title .highlight {
    background: linear-gradient(45deg, #00d4ff, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: slideInFromRight 1s ease-out;
}

.logo {
    width: 350px;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3));
    animation: logoFloat 4s ease-in-out infinite;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn:hover {
    transform: translateY(-8px) scale(1.05);
}

.btn i {
    margin-right: 12px;
    font-size: 20px;
}

.btn-join {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    ;
    color: white;
    animation: pulseGlow 2s ease-in-out infinite;
}

.btn-roblox {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    animation: pulseGlow 2s ease-in-out infinite;
    ;
    color: white;
}

.roblox-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn:hover .roblox-icon {
    transform: scale(1.2) rotate(5deg);
}

/* --- Stats Bar Styles --- */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: fit-content;
    animation: slideInFromBottom 1s ease-out 0.5s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 120px;
}

.stat-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-bottom: 2px;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.stat-value.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* --- Shop Page Specific Styles --- */
.shop-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 40px 40px 40px;
}

.shop-header {
    text-align: center;
    margin-bottom: 50px;
}

.shop-header h1 {
    font-size: 3rem;
    font-weight: 800;
}

.shop-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.shop-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    /* Creates a 1px separator line */
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.list-item {
    background-color: rgba(10, 25, 41, 0.6);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.list-item:hover {
    background-color: rgba(15, 35, 56, 0.8);
}

.list-item-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.list-item-icon {
    font-size: 1.8rem;
    color: #00d4ff;
    width: 30px;
    text-align: center;
}

.list-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.list-item-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 2px 0 0 0;
}

.list-item-action {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
    /* Prevents this section from shrinking */
}

.list-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.list-item-btn {
    background: transparent;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.list-item:hover .list-item-btn {
    background-color: #00d4ff;
    border-color: #00d4ff;
    color: #002233;
}

.donation-hidden {
    display: none;
}

/* Styles for the "Show More" button */
.donation-hidden {
    display: none;
}

/* NEW styles for the "Show More" button */
.expand-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: auto;
    /* Allow the button to size to its content */
    margin: 20px auto 0 auto;
    /* Center the button with space above */
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    /* Pill shape */
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    background-color: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    color: #fff;
}

.expand-btn i {
    transition: transform 0.3s ease;
}

.expand-btn:hover i {
    transform: translateY(3px);
    /* Animate chevron down on hover */
}

/* --- Responsive Shop Styles --- */
@media (max-width: 768px) {
    .list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .list-item-action {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* --- Footer --- */
.footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    padding: 40px 0;
    width: 100%;
}

/* --- Animations --- */
@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, .5));
    }

    100% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, .8));
    }
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px) rotate(2deg)
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, .15), 0 0 20px rgba(78, 205, 196, .3)
    }

    50% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, .15), 0 0 30px rgba(78, 205, 196, .5)
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0
    }

    100% {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100px);
        opacity: 0
    }

    100% {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(50px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

/* --- Responsive & Hamburger Menu --- */
@media (max-width: 1024px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 73px;
        gap: 0;
        flex-direction: column;
        background-color: rgba(0, 15, 35, 0.9);
        backdrop-filter: blur(10px);
        width: 100%;
        height: calc(100vh - 73px);
        text-align: center;
        transition: 0.3s;
        justify-content: center;
        align-items: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 20px 0;
        font-size: 1.5rem;
        width: 100%;
    }

    .nav-menu a:hover {
        background-color: rgba(0, 212, 255, 0.1);
        transform: translateY(0);
    }

    .nav-menu .nav-btn {
        border-radius: 0;
        border: none;
        background: none;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo-section {
        order: -1;
    }

    .stats-bar {
        flex-direction: column;
    }

    .shop-container {
        padding: 100px 20px 20px 20px;
    }

    .items-grid {
        grid-template-columns: 1fr;
    }
}

/* --- About Page Styles --- */
.page-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 40px 40px 40px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

.about-section {
    margin-bottom: 50px;
}

.section-heading {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: -15px auto 30px auto;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.team-member-row {
    background: rgba(10, 25, 41, 0.6);
    border-radius: 16px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.team-member-row:hover {
    background-color: rgba(15, 35, 56, 0.8);
}

.sotw-winner {
    border-color: rgba(255, 215, 0, 0.5);
    background: rgba(50, 40, 0, 0.4);
}

.sotw-winner:hover {
    background: rgba(60, 50, 10, 0.6);
}

.team-pfp {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00d4ff;
    flex-shrink: 0;
}

.sotw-winner .team-pfp {
    border-color: #ffd700;
}

.team-info {
    flex-grow: 1;
}

.team-info h4 {
    font-size: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px 0;
}

.team-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.team-tag.founder,
.team-tag.cofounder,
.team-tag.assistantfounder {
    background-color: #9e6bff;
    color: #fff;
}

.team-tag.sotw {
    background-color: #ffd700;
    color: #333;
}

.team-bio {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}


.server-code {
    text-align: center;
    padding: 80px 20px;
    background: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
}

.server-code h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #222;
    /* dark text */
}

.code-box {
    display: inline-block;
    padding: 20px 60px;
    background: #ffffff;
    /* white card look */
    border-radius: 12px;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    color: #00a884;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e3e3e3;
    transition: box-shadow 0.3s ease;
}

.code-box:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}





@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Responsive About Page --- */
@media (max-width: 768px) {
    .team-card {
        flex-direction: column;
        text-align: center;
    }
}


/* --- Mobile Optimizations (below 425px) --- */
@media (max-width: 425px) {

    /* Navbar */
    .nav-logo img {
        height: 30px;
    }

    .nav-logo span {
        font-size: 12px;
    }

    .hamburger {
        width: 28px;
        height: 20px;
    }

    /* Homepage title */
    .text-content .title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .text-content .subtitle {
        font-size: 1rem;
    }

    .text-content .description {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    /* Buttons */
    .button-container .btn {
        width: 90%;
        font-size: 0.9rem;
        padding: 10px;
    }

    /* Logo */
    .logo-section img {
        max-width: 180px;
    }

    /* Stats bar */
    .stats-bar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .stat-item {
        width: 100%;
        text-align: center;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .stat-value {
        font-size: 1rem;
    }

    /* Footer */
    .footer p {
        font-size: 0.75rem;
    }
}

@media (max-width: 425px) {
    .logo-section img {
        max-width: 140px;
        /* smaller logo */
    }
}



@media (max-width: 500px) {
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }

    .team-member-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-info h4 {
        font-size: 1rem;
    }

    .team-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 425px) {
    .team-info h4 {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .team-tag {
        margin-left: 0;
        font-size: 0.7rem;
    }
}

.code-main {
    display: inline-block;
    padding: 20px 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 20px;
}

.code-main h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.code-main span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    color: #00d4ff;
    letter-spacing: 2px;
}

.code-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}




/* ===============================
   NEW YEAR EVENT CARD (FULL CSS)
================================ */

.newyear-card {
    max-width: 780px;
    margin: 70px auto 40px;
    /* safe from navbar */
    padding: 26px;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.75),
            rgba(0, 212, 255, 0.12));
    border-radius: 22px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 35px rgba(0, 212, 255, 0.25);
    backdrop-filter: blur(10px);
}

/* Heading */
.newyear-card h2 {
    font-size: 1.9rem;
    color: #00d4ff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* Subtitle / description */
.event-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 22px;
}

/* Event icon / logo */
.event-logo {
    width: 78px;
    margin: 14px auto 20px;
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.6));
}

/* Countdown wrapper */
.countdown {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* Countdown box */
.countdown div {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 14px;
    padding: 12px 14px;
    min-width: 78px;
    box-shadow: inset 0 0 12px rgba(0, 212, 255, 0.15);
}

/* Countdown number */
.countdown span {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #00d4ff;
}

/* Countdown label */
.countdown small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

/* Footer text */
.event-footer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 10px;
}

/* Glow animation */
@keyframes newyearGlow {
    from {
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.25);
    }

    to {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.55);
    }
}

.newyear-card {
    animation: newyearGlow 2.5s ease-in-out infinite alternate;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
    .newyear-card {
        max-width: 92%;
        padding: 22px;
    }

    .newyear-card h2 {
        font-size: 1.7rem;
    }

    .event-desc {
        font-size: 1rem;
    }

    .event-logo {
        width: 68px;
    }

    .countdown span {
        font-size: 1.45rem;
    }
}

@media (max-width: 480px) {
    .newyear-card {
        margin: 60px auto 30px;
        padding: 18px;
    }

    .newyear-card h2 {
        font-size: 1.55rem;
    }

    .event-desc {
        font-size: 0.95rem;
    }

    .countdown {
        gap: 12px;
    }

    .countdown div {
        min-width: 68px;
        padding: 10px 12px;
    }

    .countdown span {
        font-size: 1.3rem;
    }
}





@media (max-width: 425px) {
.nigga {
    margin-left: 37px;

}
}


:root {
  --dark-bg: #1e1e2f;           
  --dark-bg-light: #353556;     
  --dark-color: #ffffff;         
  --dark-shadow: rgba(0, 0, 0, 0.4); 


#back-to-top {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark-bg), var(--dark-bg-light));
  color: var(--dark-color);
  font-size: 2rem;
  font-weight: bold;
  box-shadow: 0 4px 16px var(--dark-shadow);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  outline: none;
  display: flex;
}

#back-to-top:hover,
#back-to-top:focus {
  background: linear-gradient(135deg, var(--dark-bg-light), var(--dark-bg));
  box-shadow: 0 8px 24px var(--dark-shadow);
  transform: translateY(-4px) scale(1.08);
  color: var(--dark-color);
}

@media (max-width: 600px) {
  #back-to-top {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    bottom: 1rem;
    right: 1rem;
  }
}



}