@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Rajdhani:wght@300;400;500;600;700&family=Exo:wght@200;300;400;500;600;700&display=swap');

:root {
    --primary-color: #8a0303;
    --secondary-color: #fd0000;
    --accent-color: #ff3e3e;
    --background-color: #000000;
    --text-color: #ffffff;
    --dark-grey: #121212;
    --light-grey: #333333;
    --glow-color: rgba(255, 0, 0, 0.7);
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
}

p {
    font-family: 'Exo', sans-serif;
    font-weight: 300;
}

.hidden {
    opacity: 0;
    transform: translateY(20px);
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.logo-container {
    width: 120px;
}

.logo {
    width: 100%;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-family: 'Exo', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all var(--transition-speed) ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) ease;
}

nav ul li a:hover {
    color: var(--accent-color);
}

nav ul li a:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 0.8rem 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--glow-color);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.glow {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--glow-color);
    }
    70% {
        box-shadow: 0 0 15px 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 7rem 5% 5rem;
    background: linear-gradient(to bottom, #000000, #140000);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff0000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(90deg, #ffffff, #ff3e3e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.trophy-showcase {
    position: relative;
    perspective: 1000px;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trophy-img {
    height: 100%;
    object-fit: contain;
    transform: rotateY(15deg);
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.5));
    transition: transform 0.5s ease;
}

.trophy-showcase:hover .trophy-img {
    transform: rotateY(0deg) scale(1.05);
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--background-color);
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.how-it-works h2::after {
    content: '';
    position: absolute;
    width: 30%;
    height: 3px;
    bottom: -15px;
    left: 35%;
    background-color: var(--accent-color);
}

.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    margin: 1rem;
    padding: 2rem;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.step:hover::before {
    transform: translateX(100%);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 0 0 15px var(--glow-color);
}

.step-icon .icon {
    width: 40px;
    height: 40px;
    fill: var(--text-color);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Benefits Section */
.benefits {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--dark-grey);
}

.benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.benefits h2::after {
    content: '';
    position: absolute;
    width: 30%;
    height: 3px;
    bottom: -15px;
    left: 35%;
    background-color: var(--accent-color);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

.benefit {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    padding: 1.5rem;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-speed) ease;
}

.benefit:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.checkmark {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-right: 1.5rem;
}

.benefit p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Trophies Showcase Section */
.trophies-showcase {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--dark-grey);
    position: relative;
}

.trophies-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.trophies-showcase h2::after {
    content: '';
    position: absolute;
    width: 30%;
    height: 3px;
    bottom: -15px;
    left: 35%;
    background-color: var(--accent-color);
}

.trophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trophy-card {
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.trophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.trophy-image-container {
    height: 220px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.trophy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trophy-card:hover .trophy-image {
    transform: scale(1.05);
}

.trophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.trophy-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Lead Magnet Section */
.lead-magnet {
    padding: 5rem 5%;
    background-color: var(--background-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.lead-content {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
}

.lead-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.lead-content p {
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 1.5rem;
}

.lead-form {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: rgba(20, 20, 20, 0.8);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.lead-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-family: 'Exo', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.lead-form input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.lead-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.lead-form button {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
}

/* Final CTA Section */
.final-cta {
    padding: 7rem 5%;
    text-align: center;
    background-color: var(--background-color);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 60c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ff0000' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #ffffff, #ff3e3e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.final-cta p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.final-cta button {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Footer Styles */
footer {
    background-color: var(--dark-grey);
    padding: 5rem 5% 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 1rem;
    opacity: 0.8;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    bottom: -8px;
    left: 0;
    background-color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a, .social-icon {
    color: var(--text-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    font-size: 1rem;
    display: inline-block;
    position: relative;
}

.footer-links ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -3px;
    left: 0;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) ease;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-links ul li a:hover::after {
    width: 100%;
}

.footer-contact p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
    transition: all var(--transition-speed) ease;
}

.social-icon .icon {
    width: 20px;
    height: 20px;
    fill: var(--text-color);
    transition: all var(--transition-speed) ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.social-icon:hover .icon {
    fill: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    header {
        padding: 1rem 3%;
    }
    
    .hero {
        padding: 7rem 3% 5rem;
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .how-it-works, .benefits, .lead-magnet, .final-cta {
        padding: 4rem 3%;
    }
    
    .steps {
        justify-content: center;
    }
    
    .step {
        margin: 1rem;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.5s ease;
        z-index: 1000;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul li {
        margin: 1.5rem 0;
    }
    
    header .cta-button {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .lead-magnet {
        flex-direction: column;
    }
    
    .lead-content, .lead-form {
        min-width: 100%;
    }
    
    .lead-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .lead-content p {
        margin: 0 auto 1.5rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .final-cta p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .trophy-showcase {
        height: 300px;
    }
    
    .how-it-works h2, .benefits h2, .lead-content h2, .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .lead-form {
        padding: 1.5rem;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        min-width: 100%;
        text-align: center;
    }
    
    .footer-links h3::after, .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}