/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #334155;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation - Consistent with index.html */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 50px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #1e40af;
}

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

.nav-link.active {
    color: #1e40af;
}

.nav-link.active::after {
    width: 100%;
}

/* Academy Navigation Link Special Styling */
.academy-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.academy-nav-link:hover {
    color: #f59e0b;
}

.academy-nav-link::after {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.nav-badge {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    animation: pulse 2s infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    gap: 4px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #64748b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Breadcrumbs */
.breadcrumbs {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1rem 0;
    margin-top: 70px;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin: 0 0.5rem;
    color: #94a3b8;
    font-weight: 500;
}

.breadcrumb-item a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #3b82f6;
}

.breadcrumb-item.active span {
    color: #0f172a;
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.circuit-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
}

.circuit-line:nth-child(1) {
    width: 200px;
    height: 2px;
    top: 20%;
    left: 10%;
    animation: circuitFlow 8s linear infinite;
}

.circuit-line:nth-child(2) {
    width: 150px;
    height: 2px;
    top: 60%;
    right: 15%;
    animation: circuitFlow 8s linear infinite 2s;
}

.circuit-line:nth-child(3) {
    width: 100px;
    height: 2px;
    bottom: 30%;
    left: 50%;
    animation: circuitFlow 8s linear infinite 4s;
}

@keyframes circuitFlow {
    0%, 100% {
        opacity: 0.1;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.3;
        transform: scaleX(1.2);
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    color: #3b82f6;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.float-element:nth-child(1) {
    top: 15%;
    left: 80%;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    top: 70%;
    left: 10%;
    animation-delay: 2s;
}

.float-element:nth-child(3) {
    top: 40%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(10deg);
    }
    66% {
        transform: translateY(10px) rotate(-10deg);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.academy-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: badge-glow 2s ease-in-out infinite alternate;
    position: relative;
}

.academy-badge::after {
    content: 'V1.0';
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

@keyframes badge-glow {
    0% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    }
    100% {
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
    }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: white;
}

.gradient-text {
    background: linear-gradient(45deg, #fbbf24, #f59e0b, #eab308);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
    backdrop-filter: blur(10px);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(45deg, #f59e0b, #eab308);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #1e40af;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: white;
    border-color: #f59e0b;
    color: #f59e0b;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
}

.device-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: device-float 3s ease-in-out infinite;
}

.device-card:nth-child(2) {
    animation-delay: 1s;
}

.device-card:nth-child(3) {
    animation-delay: 2s;
}

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

.device-card i {
    font-size: 2rem;
    color: #3b82f6;
}

.device-card span {
    font-weight: 600;
    color: #0f172a;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    position: relative;
}

.version-tag {
    display: inline-block;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 0.5rem;
    vertical-align: super;
    animation: pulse 2s infinite;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Classes Section */
.classes {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.classes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.class-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.class-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.kids-class::before {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
}

.adult-class::before {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.class-badge {
    display: inline-block;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.kids-class .class-badge {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
}

.class-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.class-header p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.class-note {
    font-style: italic;
    color: #3b82f6;
    font-weight: 500;
}

.class-content {
    margin: 2rem 0;
}

.class-section {
    margin-bottom: 2rem;
}

.class-section h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.class-section h4 i {
    color: #3b82f6;
}

.class-section ul {
    list-style: none;
    padding-left: 0;
}

.class-section li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #64748b;
}

.class-section li::before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
}

.projects-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tag {
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.detail-item i {
    color: #3b82f6;
    font-size: 0.8rem;
    width: 16px;
}

.class-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}

.price-section {
    text-align: center;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
}

.price-label {
    color: #64748b;
    font-size: 0.9rem;
}

.discount-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: discount-pulse 2s infinite;
}

@keyframes discount-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Included Section */
.included-section {
    padding: 4rem 0;
    background: white;
}

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

.included-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.included-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.included-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.included-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.included-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Registration Section */
.registration {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.registration-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 2.3rem;
    color: #64748b;
    pointer-events: none;
    z-index: 10;
    font-size: 1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: transparent;
}

/* Ensure FontAwesome icons render properly */
.form-icon .fas,
.form-icon .fa-solid {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    color: inherit;
}

/* Fix icon positioning for textarea */
.message-group .form-icon {
    top: 3rem;
}

/* Focus state for icons - multiple selectors for flexibility */
.form-group input:focus + .form-icon,
.form-group select:focus + .form-icon,
.form-group textarea:focus + .form-icon,
.form-group input:focus ~ .form-icon,
.form-group select:focus ~ .form-icon,
.form-group textarea:focus ~ .form-icon {
    color: #3b82f6;
}

/* Ensure icons are visible */
.form-icon i {
    display: inline-block;
    opacity: 1;
}

/* Fallback for form icons */
.form-group {
    position: relative;
}

.form-group .form-icon {
    visibility: visible !important;
    opacity: 1 !important;
}

.message-group {
    grid-column: 1 / -1;
}

.message-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

/* Contact Section */
.contact-info {
    padding: 4rem 0;
    background: white;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-links h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-link {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    padding: 0.3rem 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* WhatsApp Chat */
.whatsapp-chat {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes whatsapp-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-chat:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .classes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding: 0.8rem 0;
        margin-top: 60px;
    }
    
    .breadcrumb-list {
        font-size: 0.8rem;
    }
    
    .nav-content {
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        color: #1e40af;
        font-weight: 600;
    }
    
    .academy-nav-link {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
    }
    
    .nav-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 3rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Mobile form icon adjustments */
    .form-icon {
        left: 0.8rem;
        top: 2.1rem;
    }
    
    .message-group .form-icon {
        top: 2.7rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-chat {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .class-card {
        padding: 1.5rem;
    }
    
    .registration-form-container {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Loading and Animation States */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #1d4ed8, #1e40af);
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-chat,
    .hero-background,
    .floating-elements {
        display: none !important;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    * {
        box-shadow: none !important;
    }
}

/* =====================================================
   Video Advertisement Popup Styles
   ===================================================== */

.video-popup-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.85) !important;
    -webkit-backdrop-filter: blur(10px); /* Safari prefix */
    backdrop-filter: blur(10px);
    z-index: 10000 !important;
    opacity: 0;
    visibility: hidden;
    display: flex;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    -webkit-align-items: center;
    -webkit-justify-content: center;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Safari prefix */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;
}

.video-popup-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.video-popup-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%) !important;
    border-radius: 24px !important;
    -webkit-box-shadow: 
        0 20px 60px rgba(59, 130, 246, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.12) !important; /* Safari prefix */
    box-shadow: 
        0 20px 60px rgba(59, 130, 246, 0.3),
        0 8px 32px rgba(0, 0, 0, 0.12) !important;
    max-width: 90vw !important; /* Limit width */
    width: 900px !important;
    max-height: 85vh !important; /* Limit height */
    min-height: 500px !important;
    overflow-y: auto !important;
    -webkit-transform: scale(1) translateY(0) !important; /* Safari shows immediately */
    transform: scale(1) translateY(0) !important;
    -webkit-transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Safari prefix */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    margin: auto !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
}

.video-popup-overlay.active .video-popup-container {
    -webkit-transform: scale(1) translateY(0); /* Safari prefix */
    transform: scale(1) translateY(0);
}

.video-popup-header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.popup-title-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.close-popup-btn {
    background: rgba(239, 68, 68, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #ef4444;
    font-size: 1.1rem;
}

.close-popup-btn:hover {
    background: #ef4444;
    color: white;
    transform: scale(1.1);
}

.sound-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #15803d;
    animation: soundPulse 2s infinite ease-in-out;
}

.sound-indicator i {
    font-size: 1rem;
    color: #22c55e;
}

@keyframes soundPulse {
    0%, 100% {
        background: rgba(34, 197, 94, 0.1);
        border-color: rgba(34, 197, 94, 0.3);
    }
    50% {
        background: rgba(34, 197, 94, 0.2);
        border-color: rgba(34, 197, 94, 0.5);
    }
}

.video-popup-content {
    padding: 1rem 2rem 2rem 2rem;
}

.video-selection-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 16px;
    padding: 0.5rem;
}

.video-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #64748b;
    position: relative;
    overflow: hidden;
}

.video-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.video-tab:hover::before {
    left: 100%;
}

.video-tab.active {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.video-tab i {
    font-size: 1.1rem;
}

.video-container {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    background: #000; /* Simplified background */
    z-index: 2; /* Ensure video frame is above any overlays */
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
    z-index: 3; /* Ensure iframe is clickable */
    pointer-events: auto; /* Explicitly enable interactions */
}

.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none; /* Hidden by default to not block video interaction */
    align-items: center;
    gap: 1rem;
    color: #64748b;
    font-weight: 500;
    z-index: 1;
    pointer-events: none; /* Ensure it doesn't block clicks even if visible */
}

.video-loading i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.popup-cta-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.popup-cta-btn::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: left 0.5s;
}

.popup-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

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

.popup-skip-btn {
    background: transparent;
    color: #64748b;
    border: 2px solid rgba(100, 116, 139, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.popup-skip-btn:hover {
    background: rgba(100, 116, 139, 0.1);
    color: #475569;
    border-color: rgba(100, 116, 139, 0.3);
}

/* =====================================================
   Mobile Responsive Styles
   ===================================================== */

@media (max-width: 768px) {
    .video-popup-overlay {
        padding: 0.5rem;
    }
    
    .video-popup-container {
        border-radius: 20px;
        max-height: 95vh;
    }
    
    .video-popup-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
        align-items: flex-start;
    }
    
    .popup-title {
        font-size: 1.25rem;
    }
    
    .sound-indicator {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .video-popup-content {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
    
    .video-selection-tabs {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.25rem;
    }
    
    .video-tab {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .popup-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .popup-cta-btn,
    .popup-skip-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .video-popup-container {
        border-radius: 16px;
    }
    
    .video-popup-header {
        padding: 1rem 1rem 0.75rem 1rem;
    }
    
    .popup-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .sound-indicator {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .sound-indicator span {
        display: none;
    }
    
    .sound-indicator::after {
        content: 'Sound On';
        font-size: 0.7rem;
    }
    
    .video-popup-content {
        padding: 0.75rem 1rem 1rem 1rem;
    }
    
    .video-selection-tabs {
        margin-bottom: 1.5rem;
    }
    
    .video-tab span {
        font-size: 0.85rem;
    }
    
    .close-popup-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Safari mobile menu fixes */
    .navbar {
        -webkit-transform: translateZ(0); /* Force hardware acceleration */
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .nav-menu {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Ensure mobile menu button is clickable */
    .mobile-menu-btn {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        cursor: pointer;
        z-index: 9999;
        position: relative;
    }
    
    /* Safari mobile popup fixes */
    .video-popup-container {
        max-width: 95vw !important;
        max-height: 90vh !important;
        min-height: auto !important;
    }
    
    .video-popup-header {
        flex-shrink: 0 !important;
    }
    
    .video-popup-content {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .close-popup-btn {
        background: #ef4444 !important;
        color: white !important;
        z-index: 20000 !important;
        position: relative !important;
    }
}

/* =====================================================
   Animation Keyframes
   ===================================================== */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* =====================================================
   Video Showcase Section (Safari Alternative)
   ===================================================== */

.video-showcase {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 2rem 0;
}

.video-showcase .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-showcase h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.video-showcase p {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.video-card iframe {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for video showcase */
@media (max-width: 768px) {
    .video-showcase {
        padding: 3rem 0;
    }
    
    .video-showcase .container {
        padding: 0 1rem;
    }
    
    .video-showcase h2 {
        font-size: 2rem;
    }
    
    .video-showcase p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-card {
        padding: 1rem;
    }
    
    .video-card h3 {
        font-size: 1.1rem;
    }
    
    .video-card iframe {
        height: 200px;
    }
}


.video-popup-overlay.active .video-popup-content > * {
    animation: slideInUp 0.5s ease forwards;
}

.video-popup-overlay.active .video-popup-header {
    animation: fadeIn 0.3s ease forwards;
}

/* =====================================================
   Video Showcase Section (Safari Alternative)
   ===================================================== */

.video-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.video-showcase .container {
    position: relative;
    z-index: 2;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.video-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(59, 130, 246, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(59, 130, 246, 0.15),
        0 12px 40px rgba(0, 0, 0, 0.08);
}

.video-header {
    padding: 2rem 2rem 1.5rem 2rem;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.kids-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.adults-badge {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.video-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.video-header p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

.video-container {
    margin: 0 2rem;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    background: #000;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-actions {
    padding: 2rem;
    text-align: center;
}

.video-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.video-cta-btn::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: left 0.5s;
}

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

.kids-cta {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.kids-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

.adults-cta {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.adults-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.video-footer {
    text-align: center;
    margin-top: 3rem;
}

.video-note {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    color: #1e40af;
    font-weight: 500;
    margin: 0;
}

.video-note i {
    color: #3b82f6;
    font-size: 1.1rem;
}

/* =====================================================
   Video Section Mobile Responsive
   ===================================================== */

@media (max-width: 768px) {
    .video-showcase {
        padding: 3rem 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .video-card {
        border-radius: 20px;
    }
    
    .video-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .video-header h3 {
        font-size: 1.25rem;
    }
    
    .video-container {
        margin: 0 1.5rem;
    }
    
    .video-actions {
        padding: 1.5rem;
    }
    
    .video-cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .video-note {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-header {
        padding: 1rem 1rem 0.75rem 1rem;
    }
    
    .video-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .video-header h3 {
        font-size: 1.1rem;
    }
    
    .video-container {
        margin: 0 1rem;
    }
    
    .video-actions {
        padding: 1rem;
    }
}