* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #0f172a;
    --darker-bg: #0a0e27;
    --accent: #00d9ff;
    --text-light: #e2e8f0;
    --text-secondary: #cbd5e1;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    text-align: justify;
}

header {
    background: linear-gradient(135deg, var(--darker-bg) 0%, rgba(0, 217, 255, 0.1) 100%);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 2px solid var(--accent);
}

header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 300;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

section {
    position: relative;
    padding: 42px;
    border-radius: 16px;

    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.035),
        rgba(0, 217, 255, 0.05)
    );

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    border: 1px solid rgba(0, 217, 255, 0.18);

    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.55),
        inset 0 0 18px rgba(0, 217, 255, 0.04);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 18px;

    background: linear-gradient(90deg, var(--accent), #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;

    text-shadow: 0 0 8px rgba(0, 217, 255, 0.25);
}

section p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.85;
}

section a {
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;

    background: linear-gradient(
        90deg,
        #ff0000,
        #ff9900,
        #ffff00,
        #00ff00,
        #00ffff,
        #0000ff,
        #ff00ff,
        #ff0000
    );
    background-size: 600% 600%;

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    animation: rgbAnimation 6s ease-in-out infinite;
    text-shadow: 0 0 0 rgba(255, 255, 255, 0.7);
    transition: 0.2s ease;
}

section a:hover {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
    transition: text-shadow 0.2s ease;
}

.with-margin {
    margin-top: 48px;
}


.back-to-home{
    display: flex;
    position: fixed;
    z-index: 9999;
    top: 20px;
    left: 20px;
    border: 3px solid #00d9ff;
    border-radius: 200px;
    background-color: #182834;
    padding: 4px;
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
    opacity: 0.5;
    box-shadow: 0 0 30px #00d9ff;
    transform: scale(1);
}

.back-to-home:hover{
    background-color: #00d9ff;
    transition: background-color 0.4s ease , transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
    opacity: 0.8;
    box-shadow: 0 0 50px #00d9ff;
}


.discord-username {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 500;
    font-size: 1.1rem;
}


@keyframes rgbAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}




@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    main {
        padding: 40px 15px;
    }

}
