/* ===========================================
   MYTVONLINE3 - BEAUTIFUL & ANIMATED
   =========================================== */
   
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #089FFF;
    --secondary-blue: #3D9BE9;
    --gold-yellow: #FDCB00;
    --dark-bg: #000000;
    --light-text: #FFFFFF;
    --dark-text: #000000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #000000;
    background: #FFFFFF;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    padding-top: 80px; /* Space for fixed navigation */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(8, 159, 255, 0.2);
}

* {
    max-width: 100%;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    width: 100%;
    overflow-x: hidden;
}

/* ===========================================
   NAVIGATION WITH SMOOTH ANIMATIONS
   =========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand .logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.nav-brand .logo:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(8, 159, 255, 0.8));
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===========================================
   HERO SECTION WITH PARALLAX
   =========================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.hero h1 .highlight {
    color: var(--primary-blue);
    text-shadow: 0 0 30px rgba(8, 159, 255, 0.8);
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 500;
    color: var(--primary-blue);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Scroll Indicator Animation */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, 0);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, 10px);
    }
}

/* ===========================================
   SECTIONS WITH BEAUTIFUL BACKGROUNDS
   =========================================== */
.intro-section,
.smart-experience-section,
.feature-gameday,
.feature-pinned,
.feature-search,
.feature-notifications,
.availability-section {
    min-height: 600px;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.intro-section,
.smart-experience-section,
.feature-gameday,
.feature-pinned,
.feature-search,
.availability-section {
    color: #FFFFFF;
}

.feature-notifications {
    color: #000000;
}

/* Section Overlays */
.intro-section::before,
.smart-experience-section::before,
.feature-gameday::before,
.feature-pinned::before,
.feature-search::before,
.availability-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.intro-section .container,
.smart-experience-section .container,
.feature-gameday .container,
.feature-pinned .container,
.feature-search .container,
.feature-notifications .container,
.availability-section .container {
    position: relative;
    z-index: 1;
}

/* ===========================================
   TYPOGRAPHY WITH ELEGANT STYLES
   =========================================== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(35px, 5vw, 55px);
    margin-bottom: 30px;
}

h3 {
    font-size: clamp(24px, 3vw, 32px);
}

p {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    margin-bottom: 20px;
}

.disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin: 10px 0;
}

.redesigned-section .disclaimer {
    color: #000000;
}

.feature-notifications .disclaimer {
    color: rgba(0, 0, 0, 0.6);
}

/* Text Highlights */
.text-gold {
    color: var(--gold-yellow);
    font-weight: 600;
}

.text-blue {
    color: var(--secondary-blue);
    font-weight: 600;
}

/* ===========================================
   IMAGE CAROUSEL WITH SMOOTH TRANSITIONS
   =========================================== */
.image-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    background: transparent;
}

.carousel-track {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: transparent;
}

.carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
    background: transparent;
}

.carousel-img.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-blue);
    width: 30px;
    border-radius: 6px;
}

.carousel-counter {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.feature-notifications .carousel-counter {
    color: rgba(0, 0, 0, 0.8);
}

/* ===========================================
   FEATURE CARDS WITH HOVER EFFECTS
   =========================================== */
.features-trio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
}

.trio-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.trio-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(8, 159, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.trio-card:hover::before {
    opacity: 1;
}

.trio-card:hover {
    transform: translateY(-20px) scale(1.08);
    box-shadow: 0 30px 80px rgba(8, 159, 255, 0.4), 0 0 40px rgba(8, 159, 255, 0.2);
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(8, 159, 255, 0.15), rgba(8, 159, 255, 0.05));
}

.trio-icon-img {
    width: 60px;
    height: auto;
    margin: 0 auto 30px auto;
    filter: brightness(0) invert(0) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconFloat 3s ease-in-out infinite;
}

.trio-card:hover .trio-icon-img {
    transform: scale(1.3) rotate(360deg);
    filter: brightness(0) invert(1) drop-shadow(0 8px 16px rgba(8, 159, 255, 0.6));
    animation: iconPulse 1s ease-in-out infinite;
}

/* Icon Float Animation */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Icon Pulse Animation on Hover */
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1.3) rotate(360deg);
    }
    50% {
        transform: scale(1.4) rotate(360deg);
    }
}

.feature-label {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    margin: 5px 0;
}

/* Core Features Footer */
.core-features-footer {
    text-align: center;
    margin-top: 80px;
    padding: 40px 20px;
}

.core-features-footer .disclaimer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 20px;
}

.core-features-title {
    font-size: 42px;
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* ===========================================
   VIDEO SECTION
   =========================================== */
.video-section {
    padding: 100px 20px;
    background: #000000;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(8, 159, 255, 0.4);
    aspect-ratio: 16 / 9;
}

.video-container video,
.video-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* Allow user interaction with video */
.video-container {
    pointer-events: auto;
}

.video-container iframe {
    pointer-events: auto;
}

.video-container video {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    border-radius: 12px;
    background: #000;
}

/* ===========================================
   REDESIGNED SECTION
   =========================================== */
.redesigned-section {
    padding: 100px 20px;
    background: #FFFFFF;
}

.redesigned-section .content-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    align-items: center;
    perspective: 1500px;
}

.redesigned-section .image-showcase {
    perspective: 1500px;
    transform-style: preserve-3d;
}

.mol3-small-badge {
    width: 120px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6)) brightness(1.1);
    opacity: 1;
    visibility: visible;
}

.text-content h2 {
    color: #000000;
    margin-bottom: 20px;
}

.text-content p {
    color: #000000;
}

.interface-img {
    width: 100%;
    margin-top: 30px;
    border-radius: 8px;
    transform: rotateX(6deg) rotateY(-4deg) scale(0.98);
    box-shadow: none;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.5s ease;
    background: transparent !important;
    transform-style: preserve-3d;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
}

.interface-img:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1.02);
    filter: drop-shadow(0 40px 80px rgba(8, 159, 255, 0.4));
}

/* Ensure redesigned section carousel has transparent background with 3D effect */
.redesigned-section .image-carousel {
    background: #FFFFFF !important;
    box-shadow: none;
    perspective: 1500px;
    margin: 60px auto;
}

.redesigned-section .image-showcase {
    background: #FFFFFF;
}

/* Single Interface Image Styling */
.image-showcase-single {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    perspective: 1500px;
}

.single-interface-img {
    width: 100%;
    border-radius: 12px;
    transform: rotateX(8deg) rotateY(-5deg) scale(0.98);
    box-shadow: none;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
    background: transparent !important;
}

.single-interface-img:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1.02);
    filter: drop-shadow(0 40px 80px rgba(8, 159, 255, 0.4));
}

.redesigned-section .carousel-track {
    background: transparent !important;
    transform-style: preserve-3d;
}

.redesigned-section .carousel-img {
    background: transparent !important;
    object-fit: contain;
    transform: rotateX(8deg) rotateY(-5deg) scale(0.95);
    box-shadow: none;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.5s ease;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
}

.redesigned-section .carousel-img.active {
    transform: rotateX(8deg) rotateY(-5deg) scale(1);
}

.redesigned-section .carousel-img:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1.02) !important;
    filter: drop-shadow(0 40px 80px rgba(8, 159, 255, 0.4));
}

/* ===========================================
   FEATURES BADGE SECTION
   =========================================== */
.features-title-section {
    padding: 80px 20px;
    background: #FFFFFF;
    text-align: center;
}

.features-badge-img {
    max-width: 600px;
    margin: 0 auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
}

/* ===========================================
   GAME DAY FEATURE
   =========================================== */
.feature-gameday {
    padding: 120px 20px;
}

.feature-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-icon-large {
    margin-bottom: 20px;
}

.feature-icon-large img {
    width: 60px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.3));
}

/* Notification icon - make it black */
.feature-notifications .feature-icon-large img {
    filter: brightness(0) saturate(100%);
}

.feature-points {
    margin-top: 40px;
}

.point {
    margin-bottom: 30px;
}

.point h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.feature-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: none;
    transition: transform 0.4s ease;
    background: transparent !important;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.feature-img:hover {
    transform: scale(1.05);
}

.gameday-extra {
    text-align: center;
}

.gameday-osd,
.gameday-enjoy {
    margin: 40px auto;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* ===========================================
   BACKUP & RESTORE
   =========================================== */
.feature-backup {
    padding: 100px 20px;
    background: #FFFFFF;
    text-align: center;
}

.feature-backup .feature-content {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-backup h2 {
    color: #000000;
    margin-bottom: 30px;
}

.feature-backup p {
    color: #333333;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.backup-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.backup-images img {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
    background: transparent;
}

.backup-images img:hover {
    transform: scale(1.05);
}

.mol3-outline {
    max-width: 150px;
    margin: 60px auto 0 auto;
}

/* ===========================================
   POWERFUL FEATURES SECTION
   =========================================== */
.powerful-features {
    padding: 100px 20px;
    background: #FFFFFF;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: #000000;
    margin-bottom: 10px;
}

/* White text for smart experience section */
.smart-experience-section .section-header h2 {
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle-alt {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 20px;
}

.mol3-badge-outline-img {
    max-width: 150px;
    margin: 0 auto 20px auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6)) brightness(1.2) contrast(1.1);
    opacity: 1;
    visibility: visible;
}

/* Single Feature Image */
.features-single-image {
    max-width: 1200px;
    margin: 60px auto 40px auto;
    padding: 0 20px;
}

.features-showcase-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.features-showcase-img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(8, 159, 255, 0.3);
}

/* ===========================================
   PRICING SECTION
   =========================================== */
.pricing-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    position: relative;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    color: #FFFFFF;
    font-size: clamp(35px, 5vw, 50px);
    margin-bottom: 15px;
}

.pricing-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    transform: translateY(-15px);
}

.pricing-card-inner {
    background: linear-gradient(180deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.pricing-card:hover .pricing-card-inner {
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.6);
}

.pricing-card-featured {
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.08) translateY(-15px);
}

.pricing-card-featured .pricing-card-inner {
    background: linear-gradient(180deg, #1e40af 0%, #2563eb 50%, #0ea5e9 100%);
    box-shadow: 0 25px 70px rgba(37, 99, 235, 0.5);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(252, 211, 77, 0.95);
    color: #000000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

/* Add extra padding to featured card title to avoid overlap with badge */
.pricing-card-featured h3 {
    margin-top: 35px;
}

.pricing-logo {
    margin: 20px 0;
}

.pricing-logo img {
    width: 120px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.3));
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-price {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing-price .price {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-price .duration {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.pricing-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    color: #FFFFFF;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
    margin-top: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
    min-height: 44px; /* iOS minimum touch target */
}

.pricing-btn:hover,
.pricing-btn:active {
    background: linear-gradient(135deg, #ff6600 0%, #ff8c00 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.6);
}

.pricing-btn:active {
    transform: translateY(-1px);
}

/* Decorative circles in background */
.pricing-card-inner::before,
.pricing-card-inner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.pricing-card-inner::before {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -50px;
}

.pricing-card-inner::after {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: -50px;
}

.pricing-card-inner > * {
    position: relative;
    z-index: 1;
}

/* ===========================================
   HOME PAGE PRICING SECTION (MATCHING SUBSCRIPTION PAGE)
   =========================================== */
.pricing-section-home {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}

.pricing-section-home .pricing-header h2 {
    color: #fff;
}

.pricing-section-home .pricing-header p {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card-home {
    background: linear-gradient(180deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(8, 159, 255, 0.3);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(8, 159, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.pricing-card-home:hover::before {
    left: 100%;
}

.pricing-card-home:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.6);
    border-color: rgba(8, 159, 255, 0.8);
}

/* All cards same style - no featured card */

.featured-badge-home {
    display: none; /* Hidden - let users choose freely */
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.pricing-header-home {
    text-align: center;
    margin-bottom: 2rem;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.pricing-logo-home {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 100%;
}

.pricing-logo-home img {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(8, 159, 255, 0.5)) brightness(1.3);
}

.pricing-name-home {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
    color: #fff;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-price-home {
    margin: 1rem 0;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100px;
}

.pricing-price-home .price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    display: block;
}

.pricing-period-home {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    display: block;
    margin-top: 0.5rem;
}

.pricing-features-home {
    list-style: none;
    padding: 1.5rem 0;
    margin: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 200px;
}

.pricing-features-home li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    text-align: center;
}

.pricing-cta-home {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #D84315 0%, #E64A19 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(216, 67, 21, 0.4);
    margin-top: auto;
    height: 60px;
}

.pricing-cta-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(216, 67, 21, 0.6);
    background: linear-gradient(135deg, #E64A19 0%, #FF5722 100%);
}

/* Responsive Home Pricing */
@media (max-width: 968px) {
    .pricing-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .pricing-section-home {
        padding: 80px 20px;
    }

    .pricing-grid-home {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card-home.featured-home {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .pricing-section-home {
        padding: 60px 15px;
    }
    
    .pricing-card-home {
        padding: 2rem 1.5rem;
    }
    
    .pricing-icon-home {
        font-size: 2.5rem;
    }
    
    .pricing-name-home {
        font-size: 1.5rem;
    }
    
    .pricing-price-home {
        font-size: 2.5rem;
    }
}

/* ===========================================
   AVAILABILITY SECTION
   =========================================== */
.availability-content {
    text-align: center;
}

.mol3-logo-large {
    max-width: 250px;
    margin: 0 auto 40px auto;
}

.devices-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin: 60px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.device-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.device-box:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 70px rgba(8, 159, 255, 0.4);
    border-color: var(--primary-blue);
    background: rgba(8, 159, 255, 0.1);
}

.device-image {
    width: 100%;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.device-box:hover .device-image {
    transform: scale(1.1) rotate(2deg);
}

.device-box h3 {
    font-size: 24px;
    color: #FFFFFF;
    margin-top: 20px;
}

.formuler-logo-footer {
    max-width: 220px;
    margin: 60px auto 0 auto;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
    background: #000000;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 20px 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.footer-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* ===========================================
   SEARCH BAR IMAGE
   =========================================== */
.search-bar-img {
    max-width: 700px;
    margin: 30px auto;
}

/* ===========================================
   NOTIFICATIONS GIF
   =========================================== */
.notifications-gif {
    max-width: 900px;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

/* Tablet & Medium Screens (768px - 968px) */
@media (max-width: 968px) {
    .container {
        padding: 0 30px;
    }
    
    .redesigned-section .content-wrapper,
    .feature-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .devices-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-trio {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    /* Sections padding */
    .intro-section,
    .smart-experience-section,
    .video-section,
    .redesigned-section,
    .feature-gameday,
    .feature-pinned,
    .feature-search,
    .feature-notifications,
    .feature-backup,
    .powerful-features,
    .pricing-section,
    .availability-section {
        padding: 80px 20px;
    }
}

/* Mobile Phones (480px - 768px) */
@media (max-width: 768px) {
    body {
        padding-top: 70px !important; /* Adjust for mobile nav height */
    }
    
    html, body {
        width: 100%;
        overflow-x: hidden;
        font-size: 16px;
    }
    
    * {
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Hero Section */
    .hero {
        min-height: 500px;
        width: 100%;
        background-attachment: scroll !important; /* Fix parallax on mobile */
        background-size: cover;
        background-position: center;
    }
    
    .hero-content {
        padding: 20px 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero h1 {
        font-size: 38px;
        line-height: 1.1;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    /* Typography */
    h2 {
        font-size: 38px;
        margin-bottom: 20px;
    }
    
    h3 {
        font-size: 26px;
    }
    
    p {
        font-size: 16px;
        line-height: 1.7;
    }
    
    /* Sections */
    .intro-section,
    .smart-experience-section,
    .video-section,
    .redesigned-section,
    .feature-gameday,
    .feature-pinned,
    .feature-search,
    .feature-notifications,
    .feature-backup,
    .powerful-features,
    .pricing-section,
    .availability-section {
        padding: 50px 10px;
        background-attachment: scroll !important;
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    /* Fix content wrappers */
    .intro-content,
    .feature-content,
    .availability-content,
    .section-header {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    /* Image Carousels */
    .image-carousel {
        border-radius: 8px;
        margin: 30px auto;
    }
    
    .carousel-dots {
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 24px;
    }
    
    /* Feature Cards */
    .features-trio {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .trio-card {
        padding: 30px 20px;
    }
    
    /* Backup Images */
    .backup-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Pricing Cards */
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
    
    .pricing-card-inner {
        padding: 35px 25px;
    }
    
    .pricing-price .price {
        font-size: 42px;
    }
    
    /* Devices */
    .devices-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .device-box {
        padding: 30px 20px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 20px 30px 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-links {
        gap: 15px;
    }
}

/* Small Mobile Phones (320px - 480px) */
@media (max-width: 480px) {
    body {
        padding-top: 65px !important; /* Adjust for smaller mobile nav height */
    }
    
    html, body {
        width: 100%;
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
    }
    
    .container {
        padding: 0 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Hero Section */
    .hero {
        min-height: 450px;
        width: 100vw;
        margin: 0;
    }
    
    .hero-content {
        padding: 15px 10px;
        width: 100%;
    }
    
    .hero h1 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 15px;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 15px;
        max-width: 100%;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .mouse {
        width: 24px;
        height: 40px;
    }
    
    /* Typography */
    h2 {
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    h3 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* Sections */
    .intro-section,
    .smart-experience-section,
    .video-section,
    .redesigned-section,
    .feature-gameday,
    .feature-pinned,
    .feature-search,
    .feature-notifications,
    .feature-backup,
    .powerful-features,
    .pricing-section,
    .availability-section {
        padding: 40px 10px;
        width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    /* Logos */
    .intro-logo img,
    .mol3-logo-large {
        max-width: 160px;
        width: 100%;
        margin: 0 auto;
    }
    
    .mol3-small-badge {
        width: 70px;
        max-width: 100%;
    }
    
    .features-badge-img {
        max-width: 100%;
        width: 90%;
        margin: 0 auto;
    }
    
    /* Feature Cards */
    .trio-card {
        padding: 25px 15px;
        border-radius: 8px;
    }
    
    .trio-icon-img {
        width: 32px;
    }
    
    /* Pricing Cards */
    .pricing-cards {
        width: 100%;
        padding: 0 5px;
        box-sizing: border-box;
    }
    
    .pricing-card {
        width: 100%;
        margin: 0 auto 20px auto;
        max-width: 100%;
    }
    
    .pricing-card-inner {
        padding: 25px 15px;
        border-radius: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .pricing-logo img {
        width: 90px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .pricing-features li {
        font-size: 13px;
        padding: 10px 5px;
    }
    
    .pricing-price .price {
        font-size: 36px;
    }
    
    .pricing-btn {
        padding: 12px 25px;
        font-size: 14px;
        width: 90%;
        max-width: 250px;
        text-align: center;
        margin: 10px auto;
    }
    
    .popular-badge {
        top: 12px;
        right: 12px;
        padding: 6px 15px;
        font-size: 11px;
    }
    
    /* Featured card title spacing on mobile */
    .pricing-card-featured h3 {
        margin-top: 30px;
    }
    
    /* Device Boxes */
    .device-box {
        padding: 25px 15px;
        border-radius: 12px;
    }
    
    /* Video */
    .video-section {
        padding: 50px 10px;
    }
    
    .video-container {
        max-width: 100%;
        border-radius: 8px;
        margin: 0 auto;
    }
    
    /* Smart Experience - Ensure white text on mobile */
    .smart-experience-section .section-header h2 {
        color: #FFFFFF !important;
        font-size: 32px;
        line-height: 1.2;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    }
    
    /* MOL3 Badge */
    .mol3-badge-outline-img {
        max-width: 100px;
        margin: 0 auto 15px auto;
    }
    
    /* Game Day */
    .gameday-osd,
    .gameday-enjoy {
        margin: 30px auto;
        border-radius: 8px;
    }
    
    /* All Images on Mobile */
    .feature-img,
    .interface-img,
    .gameday-osd,
    .gameday-enjoy,
    .search-bar-img,
    .notifications-gif,
    .device-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 20px auto;
    }
    
    /* Image Carousels */
    .image-carousel,
    .carousel-track,
    .carousel-img {
        max-width: 100%;
        width: 100%;
    }
    
    /* Footer */
    .footer {
        padding: 40px 15px 25px 15px;
    }
    
    .footer-content p {
        font-size: 13px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
    }
    
    .social-links svg {
        width: 18px;
        height: 18px;
    }
}

/* Extra Small Devices (max 360px) */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    .pricing-card-inner {
        padding: 25px 15px;
    }
    
    .pricing-features li {
        font-size: 13px;
    }
}

/* ===========================================
   LOADING ANIMATIONS
   =========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Glow effect for special elements */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(8, 159, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(8, 159, 255, 0.8);
    }
}

.glow-effect {
    animation: glow 2s ease-in-out infinite;
}
