@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

@font-face {
    font-family: "kerekobar";
    src: url("/src/kerekobar.otf");
}

:root {
    --text: #f5ebff;
    --muted: #b6b0d9;
    --background: #05020a;
    --primary: #c4a7ff;
    --secondary: #7c3aed;

    --surface: #0f0c1d;
    --surface-hover: #1a1430;
    --border: #302754;
    --shadow: rgba(4, 1, 22, 0.75);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Open Sans", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 20% -10%, rgba(196, 167, 255, 0.25), transparent 45%),
        radial-gradient(circle at 80% 0%, rgba(124, 58, 237, 0.25), transparent 40%),
        var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem;
}

.logo {
    display: flex;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.5rem;
}

.logo span {
    margin: auto 0;
}

.header nav a {
    margin-left: 1.5rem;
    font-weight: 600;
    color: var(--text);
    display: none;
}

@media (min-width: 768px) {
    .header nav a {
        display: inline-block;
    }
}

.header nav a:hover {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background-color: var(--secondary);
    color: #fff;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.45);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: #e9e1ff;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    border-color: var(--text);
    background-color: var(--surface);
}

.btn-fake:hover {
    opacity: 0;
    cursor: not-allowed;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.hero {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 3rem 1.5rem;
    text-align: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        text-align: left;
        padding: 5rem 1.5rem;
    }
    .hero-buttons {
        display: flex;
        gap: 1rem;
        justify-content: flex-start;
    }
}

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.old-site {
    text-decoration: underline;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hero .subtitle {
    font-size: 1.1rem;
    color: #c7c0ff;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.7rem;
    color: var(--muted);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.emoji-scene {
    font-size: 5rem;
    background: var(--surface);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.features-section {
    padding: 4rem 0;
    background-color: var(--surface);
}

.features-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.65);
    transition: transform 0.3s, border-color 0.3s;

    flex: 1 1 300px;
    max-width: 400px;
    width: 100%;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(196, 167, 255, 0.4);
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.card p {
    font-size: 0.95rem;
    color: #d8d1ff;
}

.reviews-section {
    padding: 4rem 1.5rem;
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

.carousel-wrapper {
    overflow: hidden;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, transform 0.2s;
}

.nav-btn:hover {
    border-color: rgba(124, 58, 237, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

@media (max-width: 768px) {
    .nav-btn {
        display: none;
    }
}

.carousel {
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

@media (min-width: 768px) {
    .review-card {
        flex: 0 0 40%;
    }
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-header .avatar {
    font-size: 2.5rem;
    background: linear-gradient(145deg, #191732, #2d1e64);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-header h4 {
    margin: 0;
    font-size: 1rem;
}

.review-header small {
    color: var(--secondary);
    font-weight: 600;
}

.cta-section {
    background: linear-gradient(135deg, #1c0f3e, #3c1c74);
    color: white;
    text-align: center;
    padding: 4rem 1.5rem;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.big-btn {
    background: var(--secondary);
    color: #fff;
    font-size: 1.2rem;
    padding: 1rem 3rem;
    box-shadow: 0 14px 40px rgba(124, 58, 237, 0.4);
}

.big-btn:hover {
    background: var(--surface);
    transform: translateY(-3px);
}

.sponsors-section {
    padding: 2rem 0 4rem 0;
    background-color: var(--background);
    overflow: hidden;
}

.sponsors-title {
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: scroll 30s linear infinite;
    padding: 0.5rem 0;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.sponsor-tag {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s;
}

.sponsor-tag:hover {
    transform: scale(1.08);
}

.tier-creator {
    background: var(--secondary);
    color: white;
    border: 2px solid transparent;
}

.tier-vip {
    background-color: #2e1a59;
    color: #f5ebff;
    border: 1px solid #5c3ca8;
}

.tier-norm {
    background-color: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
}

.tier-norm:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.kerekobar {
    font-family: "kerekobar";
}

footer {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #05010a;
    color: var(--muted);
    font-size: 0.85rem;
}
