:root {
    --primary-dark: #0a0a14;
    --secondary-dark: #121220;
    --gold-primary: #D4AF37;
    --gold-secondary: #FFD700;
    --accent-blue: #1E90FF;
    --text-light: #F5F5F5;
    --text-gray: #B0B0B0;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-dark);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(29, 29, 51, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(29, 29, 51, 0.1) 0%, transparent 20%);
}

.content {
    width: 50%;
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.title img {
    width: 8rem;
}

.title h1 {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

h2 {
    text-align: center;
    color: #B0B0B0;
    font-size: 2.5rem;
}

p {
    text-align: center;
    color: #F5F5F5;
    margin-top: 1rem;
    font-size: 1.5rem;
}

.cs {
    font-weight: 800;
    color: #FFD700;
    transition: var(--transition);
    animation: flashing 0.4s linear infinite;
}

@keyframes flashing {
    0% {
        color: darkred;
    }

    25% {
        color: red;
    }

    50% {
        color: #FFD700;
    }

    100% {
        color: #D4AF37;
    }
}