:root {
    --bg-color: #0a0a0a;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-color: #f5f5f5;

    --accent-red: #ff6b6b;
    --accent-green: #43c955;
    --accent-yellow: #ffe66d;
    --accent-yellow-dark: #ffd93d;
    --accent-blue: #5a9bd4;
    --button-outline: rgba(255, 255, 255, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    animation: fadeIn 0.6s ease-out forwards;
}

header, .hero, footer {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

header {
    animation-delay: 0.2s;
}

.hero {
    animation-delay: 0.4s;
}

footer {
    animation-delay: 0.6s;
}

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

html, body {
    height: 100%;
    background-color: var(--bg-color);
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background-color: var(--bg-color);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--accent-yellow);
    filter: blur(120px);
    opacity: 0.02;
    pointer-events: none;
}

.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem 4rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

body::-webkit-scrollbar {
    width: 2px;
}

body::-webkit-scrollbar-track {
    background: var(--bg-color);
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb {
    background: rgb(94, 94, 93);
    border-radius: 4px;
    transition: background 0.3s;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--accent-yellow);
}

.hero {
    width: 100%;
    max-width: 900px;
    text-align: center;
    margin-bottom: 4rem;
}

.hero h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    letter-spacing: -1px;
    user-select: none;
}

.hero p {
    font-weight: 500;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    user-select: none;
}

footer {
    width: 100%;
    text-align: center;
    padding: 2.5rem 1rem;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), rgba(15, 15, 15, 0.9));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    user-select: none;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

@media (max-width: 768px) {

    .hero h2 {
    font-size: 2.6rem;
    }

    .hero p {
    font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .hero h2 {
    font-size: 2.2rem;
    }

    .hero p {
    font-size: 1rem;
    }
}