/* ============================================
   STRIKE Premium Course Platform 
   Pure HTML & CSS - No JavaScript
   #STRIKEClone #HTMLCSSOnly #WebClone #CSSChallenge
   ============================================ */

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

body {
    font-family: 'Teko', sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

input[type="radio"],
input[type="checkbox"] {
    display: none;
}

/* ========== PREMIUM BADGE ========== */
.premium-badge {
    position: fixed;
    top: 100px;
    right: -50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 10px 60px;
    font-weight: 900;
    letter-spacing: 2px;
    transform: rotate(45deg);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 4px 25px rgba(255, 215, 0, 0.8); }
}

/* ========== BACKGROUND ========== */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 100%);
}

.bg-effects::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
    animation: bgMove 20s ease-in-out infinite;
}

@keyframes bgMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, -50px); }
}

.bg-effects::after {
    content: '01010101010101010101010101010101010101010101010101';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #8b0000;
    opacity: 0.03;
    font-size: 14px;
    font-family: monospace;
    overflow: hidden;
    word-wrap: break-word;
    animation: matrixFall 15s linear infinite;
}

@keyframes matrixFall {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid #dc143c;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(220, 20, 60, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px #dc143c, 0 0 40px #dc143c;
    letter-spacing: 4px;
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { text-shadow: 0 0 20px #dc143c, 0 0 40px #dc143c; }
    50% { text-shadow: 0 0 30px #dc143c, 0 0 60px #dc143c, 0 0 90px #8b0000; }
}

.premium-tag {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 900;
    border-radius: 4px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links label {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
    padding-bottom: 5px;
}

.nav-links label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #dc143c;
    transition: width 0.3s;
}

.nav-links label:hover::after {
    width: 100%;
}

.nav-links label:hover {
    color: #dc143c;
    text-shadow: 0 0 10px #dc143c;
}

.mobile-menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-icon span {
    width: 30px;
    height: 3px;
    background: #dc143c;
    transition: 0.3s;
}

/* ========== PAGES ========== */
.page {
    display: none;
    min-height: 100vh;
    padding: 120px 5% 60px;
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

#nav-home:checked ~ .pages #home,
#nav-about:checked ~ .pages #about,
#nav-syllabus:checked ~ .pages #syllabus,
#nav-enroll:checked ~ .pages #enroll,
#nav-contact:checked ~ .pages #contact {
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 60px 40px;
    background: linear-gradient(135deg, #1a0000 0%, #8b0000 50%, #2a0000 100%);
    border-radius: 20px;
    margin-bottom: 60px;
    box-shadow: 0 10px 50px rgba(220, 20, 60, 0.4);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 8px 20px;
    font-weight: 900;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 0 30px #dc143c, 0 0 60px #dc143c;
    letter-spacing: 8px;
    animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { text-shadow: 0 0 30px #dc143c, 0 0 60px #dc143c; }
    50% { text-shadow: 0 0 50px #dc143c, 0 0 100px #dc143c, 0 0 150px #8b0000; }
}

.subtitle {
    font-size: 1.8rem;
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 2rem;
    color: #c0c0c0;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.description {
    font-size: 1.3rem;
    color: #c0c0c0;
    margin-bottom: 30px;
    line-height: 1.8;
}

.warrior-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.warrior-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 10px;
    border: 3px solid #dc143c;
    box-shadow: 0 0 50px rgba(220, 20, 60, 0.6);
    animation: floatWarrior 3s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes floatWarrior {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.warrior-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.3) 0%, transparent 70%);
    animation: pulseGlow 2s ease-in-out infinite;
    z-index: 0;
    border-radius: 50%;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #dc143c, #ff1744);
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    border: 2px solid #dc143c;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(220, 20, 60, 0.8);
}

/* ========== PREMIUM FEATURES ========== */
.premium-features {
    margin: 60px 0;
    padding: 50px;
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid #ffd700;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.premium-features h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 40px;
    text-align: center;
    color: #ffd700;
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    padding: 30px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.6), rgba(220, 20, 60, 0.3));
   border: 3px solid #dc143c;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #dc143c;
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.6);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #fff;
}

.feature-box p {
    font-size: 1.2rem;
    color: #c0c0c0;
    line-height: 1.6;
}

/* ========== INTRO STATS ========== */
.intro {
    margin-top: 60px;
    padding: 50px;
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid #8b0000;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.intro h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #dc143c;
    text-transform: uppercase;
}

.intro p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #c0c0c0;
    margin-bottom: 15px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-box {
    padding: 35px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.15), rgba(139, 0, 0, 0.15));
    border: 2px solid #8b0000;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.stat-box:hover {
    transform: translateY(-15px) scale(1.08);
    border-color: #dc143c;
    box-shadow: 0 15px 50px rgba(220, 20, 60, 0.5);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #dc143c;
    text-shadow: 0 0 25px #dc143c;
    margin-bottom: 10px;
}

#nav-home:checked ~ .pages .stat-number {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from { opacity: 0; transform: scale(0.3) rotate(-10deg); }
    to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.stat-label {
    font-size: 1.4rem;
    color: #c0c0c0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ========== ABOUT PAGE ========== */
.about-content {
    display: grid;
    gap: 40px;
}

.about-section {
    padding: 40px;
    background: rgba(20, 20, 20, 0.8);
    border-left: 5px solid #dc143c;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.about-section:hover {
    transform: translateX(10px);
    box-shadow: -5px 0 20px rgba(220, 20, 60, 0.3);
}

.about-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #dc143c;
    text-transform: uppercase;
}

.about-section p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #c0c0c0;
    margin-bottom: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.benefit-card {
    padding: 25px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(220, 20, 60, 0.1));
    border: 2px solid #8b0000;
    border-radius: 12px;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.4);
    border-color: #dc143c;
}

.benefit-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #fff;
}

.benefit-card p {
    font-size: 1.2rem;
    color: #c0c0c0;
}

/* ========== SYLLABUS ========== */
.syllabus-grid {
    display: grid;
    gap: 30px;
}

.syllabus-category {
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid #8b0000;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.syllabus-category:hover {
    border-color: #dc143c;
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.3);
}

.category-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, #8b0000, #dc143c);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: all 0.3s;
}

.category-header:hover {
    background: linear-gradient(135deg, #dc143c, #ff1744);
}

.category-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
}

.category-header .icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion-toggle:checked + .category-header .icon {
    transform: rotate(180deg);
}

.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-toggle:checked ~ .category-content {
    max-height: 3000px;
}

.topic-list {
    padding: 30px;
}

.topic-item {
    padding: 25px;
    margin-bottom: 20px;
    background: rgba(10, 10, 10, 0.6);
    border-left: 4px solid #dc143c;
    border-radius: 8px;
    transition: all 0.3s;
}

.topic-item:hover {
    transform: translateX(10px);
    background: rgba(20, 20, 20, 0.8);
    border-left-width: 6px;
}

.topic-item h4 {
    font-size: 1.7rem;
    margin-bottom: 12px;
    color: #fff;
}

.topic-item p {
    font-size: 1.3rem;
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 10px;
}

.tutorial-link {
    display: inline-block;
    margin-top: 12px;
    margin-right: 10px;
    padding: 10px 25px;
    background: linear-gradient(135deg, #dc143c, #8b0000);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    border: 2px solid #dc143c;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.tutorial-link:hover {
    transform: translateX(5px) scale(1.05);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.6);
    background: linear-gradient(135deg, #ff1744, #dc143c);
}

.tutorial-link::before {
    content: "▶ ";
    margin-right: 6px;
}

/* ========== ENROLL FORM ========== */
.enroll-form {
    max-width: 650px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(20, 20, 20, 0.95);
    border: 3px solid #ffd700;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 50px rgba(255, 215, 0, 0.3);
    position: relative;
}

.premium-badge-form {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 8px 25px;
    font-weight: 900;
    letter-spacing: 2px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.enroll-form h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-align: center;
    color: #dc143c;
    text-transform: uppercase;
}

.form-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #c0c0c0;
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ffd700;
    letter-spacing: 1px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid #8b0000;
    border-radius: 8px;
    color: #fff;
    font-size: 1.2rem;
    font-family: 'Teko', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #dc143c;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
    transform: scale(1.02);
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #dc143c, #ff1744);
    border: 2px solid #dc143c;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s;
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
}

.submit-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.7);
    background: linear-gradient(135deg, #ff1744, #ff4444);
}

.form-note {
    text-align: center;
    font-size: 1.1rem;
    color: #ffd700;
    margin-top: 20px;
    font-style: italic;
}

/* ========== CONTACT ========== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    padding: 40px;
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid #8b0000;
    border-radius: 15px;
}

.contact-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #dc143c;
    text-transform: uppercase;
}

.contact-intro {
    font-size: 1.3rem;
    color: #c0c0c0;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(10, 10, 10, 0.5);
    border-left: 4px solid #dc143c;
    border-radius: 8px;
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(20, 20, 20, 0.7);
}

.contact-item h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #fff;
}

.contact-item p {
    font-size: 1.3rem;
    color: #c0c0c0;
}

.contact-item a {
    color: #dc143c;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-item a:hover {
    color: #fff;
    text-shadow: 0 0 10px #dc143c;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    padding: 10px 20px;
    /* background: linear-gradient(135deg, #8b0000, #dc143c); */
    border-radius: 25px;
    border: 2px solid #dc143c;
    transition: all 0.3s;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.6);
    background: linear-gradient(135deg, #dc143c, #ff1744);
    border-color: #ff1744;
}

.contact-form-container {
    padding: 40px;
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid #8b0000;
    border-radius: 15px;
}

.contact-form-container h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #dc143c;
    text-transform: uppercase;
}

textarea {
    width: 100%;
    padding: 15px;
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid #8b0000;
    border-radius: 8px;
    color: #fff;
    font-size: 1.2rem;
    font-family: 'Teko', sans-serif;
    resize: vertical;
    min-height: 150px;
    transition: all 0.3s;
}

textarea:focus {
    outline: none;
    border-color: #dc143c;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
}

/* ========== FOOTER ========== */
.footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 2px solid #dc143c;
    padding: 30px 5%;
    text-align: center;
    margin-top: 60px;
}

.footer p {
    color: #c0c0c0;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.hashtags {
    color: #dc143c;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .premium-badge {
        top: 80px;
        padding: 8px 50px;
        font-size: 0.8rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .premium-tag {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
    
    .mobile-menu-icon {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 30px;
        transition: right 0.3s;
        border-top: 2px solid #dc143c;
        gap: 1rem;
    }
    
    #mobile-menu:checked ~ nav .nav-links {
        right: 0;
    }
    
    .hero {
        padding: 40px 25px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 1.2rem;
    }
    
    .warrior-image {
        max-width: 350px;
    }
    
    .premium-features {
        padding: 30px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .enroll-form {
        padding: 40px 25px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1.5rem;
    }
    
    .warrior-image {
        max-width: 280px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .premium-features h2 {
        font-size: 2rem;
    }
    
    .about-section h2 {
        font-size: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}