/* Dark Cosmic Theme Variables */
:root {
    --bg-dark: #050510;
    --primary-glow: #00f3ff;
    --secondary-glow: #bc13fe;
    --gold-accent: #ffd700;
    --text-white: #ffffff;
    --text-gray: #a0a0b0;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-light: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(188, 19, 254, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 243, 255, 0.1) 0%, transparent 40%),
        url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIxMCIgY3k9IjEwIiByPSIxIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMiIvPjwvc3ZnPg==');
    /* Stars placeholder */
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-glow), var(--secondary-glow));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* HERO SECTION */
.hero-section {
    padding: 20px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.logo {
    height: 100px;
    /* Adjust based on actual logo */
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.5));
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-supporting {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.hero-image-container {
    width: 100%;
    max-width: 350px;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(188, 19, 254, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* BUTTONS */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.primary-glow {
    background: linear-gradient(135deg, #007cf0, #00dfd8);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

.primary-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.7);
}

.secondary {
    background: transparent;
    border: 1px solid var(--primary-glow);
    color: var(--primary-glow);
}

.secondary:hover {
    background: rgba(0, 243, 255, 0.1);
}

.full-width {
    width: 100%;
    display: block;
}

/* FEATURES SECTION */
.features-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-glow);
}

.icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 50%;
}

.feature-text h3 {
    font-size: 1.1rem;
    color: var(--primary-glow);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* COMPETITION SECTION */
.competition-section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.competition-card {
    background: linear-gradient(145deg, rgba(20, 20, 40, 0.9), rgba(10, 10, 20, 0.9));
    border: 1px solid var(--secondary-glow);
    padding: 30px;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.2);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-white);
}

.benefit-list {
    list-style: none;
    margin-bottom: 25px;
}

.benefit-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* LIGHT SECTION */
.highlight-section {
    padding: 40px 20px;
    text-align: center;
}

.trophy-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* FINAL CTA */
.final-cta-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.final-cta-section h2 {
    margin-bottom: 30px;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

/* FOOTER */
.footer {
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid var(--border-light);
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: var(--text-white);
    text-decoration: none;
}

.separator {
    margin: 0 10px;
}

/* DESKTOP RESPONSIVE */
@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        padding: 50px 0;
    }

    .hero-text-container {
        max-width: 50%;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .competition-section {
        justify-content: flex-end;
        /* Right aligned logic if needed, but centering is safer for general */
    }

    .cta-group {
        flex-direction: row;
        justify-content: center;
        max-width: 600px;
    }
}