@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary: #FF6B35;
    --primary-glow: rgba(255, 107, 53, 0.3);
    --bg-dark: #0a0a0a;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --font-app: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-app);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bg-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0a0a0a 100%);
}

.bg-mesh::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(at 0% 0%, hsla(18, 100%, 61%, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(18, 100%, 61%, 0.05) 0px, transparent 50%);
    filter: blur(60px);
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    animation: fadeIn 1.2s ease-out;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content-page {
    text-align: left;
    max-width: 900px;
    padding: 6rem 2rem;
    margin: 0 auto;
}

.content-page h1 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.content-page h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 2.5rem 0 1rem 0;
}

.content-page p {
    margin-bottom: 1.5rem;
    text-align: left;
}

.content-page ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-page li {
    margin-bottom: 0.75rem;
    color: var(--text-dim);
}

footer {
    width: 100%;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: auto;
}

.footer-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.back-link:hover {
    transform: translateX(-5px);
}

.logo {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 80px;
    width: auto;
}

.logo-text {
    background: linear-gradient(45deg, #FF6B35, #ff9d7d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.highlight {
    color: var(--primary);
}

p {
    font-size: 1.25rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 300;
}

.support-info {
    font-size: 1.1rem;
    color: var(--text-dim);
}

.support-email {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.support-email:hover {
    border-color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 3rem;
    }

    .logo {
        font-size: 2.5rem;
    }
}