:root {
    --primary-glow: #ff4500;
    --secondary-glow: #ff8c00;
    --accent-blue: #00bfff;
    --bg-dark: #050505;
    --card-bg: rgba(20, 20, 20, 0.8);
    --text-white: #ffffff;
    --text-gray: #b1b1b1;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: radial-gradient(circle at center, rgba(255, 69, 0, 0.1) 0%, transparent 70%);
}

.logo-container {
    max-width: 450px;
    margin-bottom: -20px;
    filter: drop-shadow(0 0 30px var(--primary-glow));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.logo-container img {
    width: 100%;
    height: auto;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-white);
    text-shadow: 0 0 15px rgba(255, 69, 0, 0.8);
    margin-bottom: 30px;
    background: linear-gradient(to bottom, #fff, var(--primary-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

/* Features Box */
.features-box {
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(255, 69, 0, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 850px;
    margin: 0 auto 50px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8), inset 0 0 15px rgba(255, 69, 0, 0.1);
    position: relative;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.feature-item i {
    color: var(--secondary-glow);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px var(--secondary-glow));
}

.feature-item span {
    font-weight: 800;
    font-size: 1.3rem;
    font-family: var(--font-heading);
}

.feature-item .sub-text {
    display: block;
    font-size: 1rem;
    color: var(--secondary-glow);
    font-style: italic;
    font-weight: 400;
}

/* Buttons */
.cta-group {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    width: 100%;
}

.btn {
    padding: 20px 60px;
    font-size: 1.4rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 60px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    position: relative;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(90deg, #8b0000, #ff4500, #8b0000);
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 25px rgba(255, 69, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background-position: right center;
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(255, 69, 0, 0.8);
}

.btn-discord {
    background: #5865F2;
    color: white;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
    background: #4752C4;
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.6);
}

.proof-section {
    width: 100%;
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-glow);
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.4);
}

.proof-container {
    background: var(--card-bg);
    border: 2px solid var(--primary-glow);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 69, 0, 0.3);
    transition: transform 0.3s ease;
}

.proof-container:hover {
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(255, 69, 0, 0.5);
}

.proof-container img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-glow);
    color: var(--primary-glow);
}

.btn-secondary:hover {
    background: var(--primary-glow);
    color: white;
}

/* Info Section */
.info-section {
    padding: 60px 20px;
    text-align: center;
}

.percentage-badge {
    width: 180px;
    height: 180px;
    border: 6px solid var(--secondary-glow);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-family: var(--font-heading);
    position: relative;
    box-shadow: inset 0 0 30px rgba(255, 140, 0, 0.4), 0 0 30px rgba(255, 140, 0, 0.4);
    background: radial-gradient(circle, rgba(255, 140, 0, 0.2) 0%, transparent 70%);
}

.percentage-badge .value {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(to bottom, #fff, var(--secondary-glow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.recommendation-text h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 900;
}

.recommendation-text h2 span {
    color: var(--accent-blue);
}

/* Video Section */
.video-section {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.video-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--primary-glow);
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.3);
}

.video-container video {
    width: 100%;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .features-box {
        grid-template-columns: 1fr;
    }

    .logo-container {
        max-width: 300px;
    }
}