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

html {
    scroll-behavior: smooth;
}

/* Scroll offset for fixed header */
section[id] {
    scroll-margin-top: 80px;
}

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

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

/* Color Variables */
:root {
    --primary-red: #dc2626;
    --secondary-red: #ef4444;
    --light-red: #2a1010;
    --dark-red: #991b1b;
    --white: #ffffff;
    --light-gray: #0a0a0a;
    --gray: #a3a3a3;
    --dark-gray: #000000;
    --black: #000000;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #dc2626, #b91c1c, #991b1b);
    color: var(--white);
    border: none;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b, #7f1d1d);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-red);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.3);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

/* Focus states for accessibility */
.btn:focus {
    outline: 3px solid rgba(220, 38, 38, 0.5);
    outline-offset: 2px;
}

.btn:focus:not(:focus-visible) {
    outline: none;
}

.btn:focus-visible {
    outline: 3px solid rgba(220, 38, 38, 0.7);
    outline-offset: 2px;
}

/* Loading state animation */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Pulse animation for primary button */
.btn-primary.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3), 0 0 0 10px rgba(220, 38, 38, 0.1);
    }
    100% {
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
}

/* Announcement Bar */
.announcement-bar {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.announcement-bar-content {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 0 15px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo a {
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.logo-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-image:hover {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(220, 38, 38, 0.4));
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
    transition: width 0.3s ease;
}

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

/* Footer brand styling */
.footer-brand h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-red);
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
}

.language-dropdown {
    padding: 8px 12px;
    border: 2px solid var(--primary-red);
    border-radius: 20px;
    background: var(--primary-red);
    color: var(--white);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.language-dropdown:hover,
.language-dropdown:focus {
    background: var(--dark-red);
    color: var(--white);
    outline: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    background: #000000;
    padding: 80px 0 60px 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 50px;
}

/* Announcement Bar Responsive Styles */
@media (max-width: 1024px) {
    .announcement-bar {
        top: 100px;
        height: 38px;
        position: fixed;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    
    .announcement-bar-content {
        font-size: 12px;
        padding: 0 12px;
        line-height: 1.2;
    }
    
    .hero {
        margin-top: 0;
        padding-top: 160px;
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        top: 90px;
        height: 35px;
        position: fixed;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    
    .announcement-bar-content {
        font-size: 11px;
        padding: 0 8px;
        line-height: 1.1;
    }
    
    .hero {
        margin-top: 0;
        padding-top: 150px;
    }
}

@media (max-width: 480px) {
    .announcement-bar {
        top: 90px;
        height: 32px;
        position: fixed;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    
    .announcement-bar-content {
        font-size: 10px;
        padding: 0 6px;
        line-height: 1.0;
    }
    
    .hero {
        margin-top: 0;
        padding-top: 145px;
    }
}

@media (max-width: 320px) {
    .announcement-bar {
        top: 90px;
        height: 30px;
        position: fixed;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    
    .announcement-bar-content {
        font-size: 9px;
        padding: 0 4px;
        line-height: 1.0;
    }
    
    .hero {
        margin-top: 0;
        padding-top: 140px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
}

@keyframes premiumRedBackground {
    0%, 100% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
        filter: hue-rotate(0deg) saturate(1) brightness(1) contrast(1);
    }
    14% {
        background-position: 15% 15%, 15% 15%, 15% 15%, 15% 15%, 15% 15%, 15% 15%, 0% 0%;
        filter: hue-rotate(8deg) saturate(1.15) brightness(1.08) contrast(1.05);
    }
    28% {
        background-position: 30% 30%, 30% 30%, 30% 30%, 30% 30%, 30% 30%, 30% 30%, 0% 0%;
        filter: hue-rotate(16deg) saturate(1.3) brightness(1.15) contrast(1.1);
    }
    42% {
        background-position: 45% 45%, 45% 45%, 45% 45%, 45% 45%, 45% 45%, 45% 45%, 0% 0%;
        filter: hue-rotate(24deg) saturate(1.45) brightness(1.22) contrast(1.15);
    }
    56% {
        background-position: 60% 60%, 60% 60%, 60% 60%, 60% 60%, 60% 60%, 60% 60%, 0% 0%;
        filter: hue-rotate(32deg) saturate(1.6) brightness(1.3) contrast(1.2);
    }
    70% {
        background-position: 75% 75%, 75% 75%, 75% 75%, 75% 75%, 75% 75%, 75% 75%, 0% 0%;
        filter: hue-rotate(24deg) saturate(1.45) brightness(1.22) contrast(1.15);
    }
    84% {
        background-position: 90% 90%, 90% 90%, 90% 90%, 90% 90%, 90% 90%, 90% 90%, 0% 0%;
        filter: hue-rotate(16deg) saturate(1.3) brightness(1.15) contrast(1.1);
    }
}

@keyframes dotsTwinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
        filter: brightness(1);
    }
    25% {
        opacity: 0.8;
        transform: scale(1.2);
        filter: brightness(1.3);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
        filter: brightness(0.7);
    }
    75% {
        opacity: 0.9;
        transform: scale(1.1);
        filter: brightness(1.2);
    }
}

@keyframes linesMove {
    0% {
        background-position: 0 0, 100px 100px, 50px 50px, 150px 150px, 25px 25px, 125px 125px, 75px 75px, 175px 175px;
        opacity: 0.1;
    }
    25% {
        background-position: 50px 25px, 150px 125px, 100px 75px, 200px 175px, 75px 50px, 175px 150px, 125px 100px, 225px 200px;
        opacity: 0.2;
    }
    50% {
        background-position: 100px 50px, 200px 150px, 150px 100px, 250px 200px, 125px 75px, 225px 175px, 175px 125px, 275px 225px;
        opacity: 0.15;
    }
    75% {
        background-position: 150px 75px, 250px 175px, 200px 125px, 300px 225px, 175px 100px, 275px 200px, 225px 150px, 325px 250px;
        opacity: 0.25;
    }
    100% {
        background-position: 200px 100px, 300px 200px, 250px 150px, 350px 250px, 225px 125px, 325px 225px, 275px 175px, 375px 275px;
        opacity: 0.1;
    }
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 18px;
    }
    
    .refer-box {
        max-width: 320px;
        padding: 20px;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: center;
        text-align: center;
    }
    
    .hero-image {
        align-items: center;
        padding-top: 0;
    }
    
    .refer-box {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .trustpilot-badge--hero {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .hero-container {
        gap: 25px;
        padding: 0 15px;
    }
    
    .refer-box {
        max-width: 350px;
        padding: 18px;
    }
    
    .hero-ctas {
        flex-direction: row;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 30px;
        padding: 16px;
        align-items: center;
        align-self: center;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trustpilot-badge--hero {
        padding: 10px 16px;
        font-size: 12px;
        gap: 5px;
    }
    
    .trustpilot-badge--hero .tp-star {
        font-size: 14px;
    }
    
    .trustpilot-badge--hero .tp-label {
        font-size: 12px;
    }
    
    .trustpilot-badge--hero .tp-grade {
        font-size: 12px;
    }
    
    .trustpilot-badge--hero .tp-box {
        font-size: 13px;
    }
    
    .trustpilot-badge--hero .tp-score {
        font-size: 11px;
    }
    
    .hero-ctas .btn {
        flex: 1;
        min-width: 180px;
        max-width: 250px;
        padding: 14px 20px;
        font-size: 15px;
        min-height: 48px;
        height: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }
    
    .hero-ctas .btn i {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .hero-container {
        gap: 20px;
        padding: 0 12px;
    }
    
    .refer-box {
        max-width: 320px;
        padding: 16px;
    }
    
    .hero-ctas {
        padding: 14px;
        align-items: center;
        align-self: center;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas .btn {
        min-width: 180px;
        max-width: 250px;
        padding: 14px 18px;
        font-size: 15px;
        min-height: 48px;
        height: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }
    
    .hero-ctas .btn i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        gap: 18px;
        padding: 0 10px;
    }
    
    .trustpilot-badge--hero {
        padding: 8px 12px;
        font-size: 10px;
        gap: 4px;
    }
    
    .trustpilot-badge--hero .tp-star {
        font-size: 12px;
    }
    
    .trustpilot-badge--hero .tp-label {
        font-size: 10px;
    }
    
    .trustpilot-badge--hero .tp-grade {
        font-size: 10px;
    }
    
    .trustpilot-badge--hero .tp-box {
        font-size: 11px;
    }
    
    .trustpilot-badge--hero .tp-score {
        font-size: 9px;
    }
    
    .refer-box {
        max-width: 300px;
        padding: 15px;
    }
    
    .hero-ctas {
        gap: 12px;
        flex-direction: column;
        align-items: center;
        padding: 12px;
        align-self: center;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trustpilot-badge--hero {
        padding: 10px 14px;
        font-size: 11px;
        gap: 4px;
    }
    
    .trustpilot-badge--hero .tp-star {
        font-size: 13px;
    }
    
    .trustpilot-badge--hero .tp-label {
        font-size: 11px;
    }
    
    .trustpilot-badge--hero .tp-grade {
        font-size: 11px;
    }
    
    .trustpilot-badge--hero .tp-box {
        font-size: 12px;
    }
    
    .trustpilot-badge--hero .tp-score {
        font-size: 10px;
    }
    
    .hero-ctas .btn {
        min-width: 160px;
        max-width: 240px;
        padding: 12px 16px;
        font-size: 14px;
        min-height: 48px;
        height: auto;
        width: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }
    
    .hero-ctas .btn i {
        font-size: 16px;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    min-width: 300px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

/* Hero Logo */
.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.hero-brand-text {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-red);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
}

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

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-title {
    font-size: 52px;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 800;
    text-align: left;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    line-height: 1.7;
    text-align: left;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Trustpilot Badge - Compact Grey Style */
.trustpilot-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 8px 16px;
    background: var(--light-gray);
    border-radius: 25px;
    border: 1px solid rgba(220, 38, 38, 0.3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    line-height: 1;
    text-decoration: none;
    color: var(--white);
    transition: all 0.2s ease;
    white-space: nowrap;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
}

.trustpilot-badge--hero {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(220, 38, 38, 0.03));
    border: 2px solid rgba(220, 38, 38, 0.3);
    padding: 12px 20px;
    font-size: 13px;
    gap: 6px;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
}

.trustpilot-badge--hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(220, 38, 38, 0.35);
    border-color: rgba(220, 38, 38, 0.5);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.12), rgba(220, 38, 38, 0.05));
}

.trustpilot-badge--hero .tp-star {
    font-size: 16px;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
}

.trustpilot-badge--hero .tp-label {
    font-weight: 700;
    font-size: 13px;
    color: var(--white);
}

.trustpilot-badge--hero .tp-grade {
    font-weight: 600;
    font-size: 13px;
    color: var(--white);
}

.trustpilot-badge--hero .tp-box {
    font-size: 14px;
    color: var(--white);
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.2));
}

.trustpilot-badge--hero .tp-score {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.trustpilot-badge:hover {
    background: var(--dark-red);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.tp-star {
    color: #2ecc71;
    font-size: 16px;
    font-weight: bold;
}

.tp-label {
    color: var(--white);
    font-weight: 600;
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0.3px;
}

.tp-grade {
    color: var(--white);
    font-weight: 600;
    font-size: 12px;
}

.tp-stars {
    display: flex;
    gap: 3px;
}

.tp-box {
    color: #ffffff;
    background: #2ecc71;
    font-size: 12px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.tp-score {
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
}


.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    margin-bottom: 25px;
    flex-wrap: wrap;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-ctas .btn {
    flex: 1;
    min-width: 180px;
    max-width: 250px;
    position: relative;
    padding: 14px 24px;
    font-size: 16px;
    min-height: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
}

.hero-ctas .btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hero-ctas .btn:hover i {
    transform: scale(1.1);
}


.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 25px;
}

/* Unlock Instant Access Box */
.unlock-box {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.unlock-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.unlock-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.unlock-icon i {
    color: var(--white);
    font-size: 32px;
}

.unlock-content h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    text-align: center;
}

.unlock-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0 0 15px 0;
    line-height: 1.4;
    text-align: center;
}

.btn-unlock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.btn-unlock:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-unlock i {
    font-size: 16px;
}

/* Refer a Friend Box */
.refer-box {
    position: relative;
    width: 100%;
    max-width: 350px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.95) 0%, rgba(220, 38, 38, 0.9) 100%);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.refer-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.refer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.refer-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.refer-icon i {
    color: var(--white);
    font-size: 20px;
}

.refer-icon .icon-fallback {
    display: none;
    font-size: 20px;
    color: var(--white);
}

/* Fallback for when Font Awesome doesn't load */
.refer-icon.fa-failed .icon-fallback,
.feature-icon.fa-failed .icon-fallback,
.contact-icon.fa-failed .icon-fallback,
.step-icon.fa-failed .icon-fallback,
.unlock-icon.fa-failed .icon-fallback,
.btn.fa-failed .icon-fallback,
.status-btn.fa-failed .icon-fallback {
    display: block;
}

.refer-icon.fa-failed i,
.feature-icon.fa-failed i,
.contact-icon.fa-failed i,
.step-icon.fa-failed i,
.unlock-icon.fa-failed i,
.btn.fa-failed i,
.status-btn.fa-failed i {
    display: none;
}

/* Default icon fallbacks */
.icon-fallback {
    display: none;
    font-size: inherit;
    color: inherit;
}

.refer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.refer-content h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.refer-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.btn-refer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    color: var(--primary-red);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-red);
    cursor: pointer;
    width: 100%;
    justify-content: center;
}

.btn-refer:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.btn-refer i {
    font-size: 16px;
}

/* Trustpilot Badge inside Refer Box */
.refer-box .trustpilot-badge {
    margin: 15px auto 0 auto;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 12px;
    font-size: 11px;
    gap: 5px;
}

.refer-box .trustpilot-badge--hero {
    margin: 15px auto 0 auto;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 16px;
    font-size: 12px;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: 95%;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.refer-box .trustpilot-badge--hero:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.refer-box .trustpilot-badge .tp-star,
.refer-box .trustpilot-badge--hero .tp-star {
    color: #00b67a;
    filter: drop-shadow(0 2px 4px rgba(0, 182, 122, 0.4));
}

.refer-box .trustpilot-badge .tp-box,
.refer-box .trustpilot-badge--hero .tp-box {
    color: var(--white);
}

.refer-box .trustpilot-badge--hero .tp-star {
    font-size: 18px;
}

.refer-box .trustpilot-badge--hero .tp-box {
    font-size: 15px;
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.2));
}

.refer-box .trustpilot-badge .tp-label,
.refer-box .trustpilot-badge--hero .tp-label {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    font-size: 12px;
}

.refer-box .trustpilot-badge .tp-grade,
.refer-box .trustpilot-badge--hero .tp-grade {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 12px;
}

.refer-box .trustpilot-badge--hero .tp-score {
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
}

.refer-box .trustpilot-badge .tp-score {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Trustpilot in Refer Box */
@media (max-width: 768px) {
    .refer-box .trustpilot-badge--hero {
        padding: 8px 10px;
        font-size: 10px;
        gap: 4px;
        max-width: 95%;
    }
    
    .refer-box .trustpilot-badge--hero .tp-star {
        font-size: 13px;
    }
    
    .refer-box .trustpilot-badge--hero .tp-box {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .refer-box .trustpilot-badge--hero {
        padding: 6px 8px;
        font-size: 9px;
        gap: 3px;
        max-width: 100%;
    }
    
    .refer-box .trustpilot-badge--hero .tp-star {
        font-size: 11px;
    }
    
    .refer-box .trustpilot-badge--hero .tp-label,
    .refer-box .trustpilot-badge--hero .tp-grade {
        font-size: 9px;
    }
    
    .refer-box .trustpilot-badge--hero .tp-box {
        font-size: 10px;
    }
    
    .refer-box .trustpilot-badge--hero .tp-score {
        font-size: 8px;
    }
}

/* Quick Start Section */
.quick-start {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 50%, #1a1a1a 100%);
}

.quick-start-content {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.quick-start-content h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 60px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 30px;
    align-items: stretch;
}

.step {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 15px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.step-icon i {
    font-size: 32px;
    color: var(--white);
}


.step-content h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 600;
    text-align: center;
}

.step-content p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 12px;
    text-align: center;
}

.device-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.device-icons i {
    font-size: 24px;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.device-icons i:hover {
    transform: scale(1.2);
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    position: relative;
    gap: 20px;
    padding-top: 20px;
}


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
}

.standout-heading {
    font-size: 42px !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
    margin-bottom: 20px !important;
    position: relative;
}

.standout-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--light-gray);
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 1400px) {
    .pricing-grid {
        grid-template-columns: repeat(4, minmax(260px, 1fr));
        gap: 18px;
        padding: 0 18px;
    }
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(3, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 20px;
    }
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
}

@media (max-width: 580px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
        max-width: 400px;
        margin: 40px auto 0;
    }
}

.pricing-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    width: 100%;
    min-width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
}

/* Device-specific classes removed - now using smart responsive breakpoints */

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid var(--primary-red);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}


.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 10;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.card-header h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
    white-space: nowrap;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 24px;
    color: var(--primary-red);
    font-weight: 600;
}

.amount {
    font-size: 48px;
    color: var(--primary-red);
    font-weight: 700;
    margin: 0 5px;
}

.period {
    font-size: 14px;
    color: var(--gray);
}

.device-selector {
    margin-bottom: 30px;
}

.device-selector label {
    display: block;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 500;
}

.device-count {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: var(--black);
    color: var(--white);
    font-size: 16px;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--white);
    white-space: nowrap;
}

.features-list i {
    color: var(--primary-red);
    font-size: 16px;
}

/* Trial Section */
.trial {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
}

.trial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trial-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.trial-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.trial-features {
    list-style: none;
    margin-bottom: 30px;
}

.trial-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 16px;
}

.trial-features i {
    color: var(--white);
    font-size: 18px;
}

.trial-cta-btn {
    background: linear-gradient(135deg, #dc2626, #ef4444) !important;
    color: white !important;
    padding: 12px 24px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.trial-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.6s ease;
}

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

.trial-cta-btn:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4) !important;
    background: linear-gradient(135deg, #ef4444, #f87171) !important;
}

.trial-cta-btn i {
    font-size: 16px;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 8px 35px rgba(220, 38, 38, 0.7);
        transform: scale(1.02);
    }
}


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

.trial-mockup {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.trial-device-mockup {
    position: relative;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

.device-screen {
    width: 380px;
    height: 240px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 30px;
    border: 5px solid #333;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 0 4px #444,
        0 30px 60px rgba(0, 0, 0, 0.6),
        inset 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.screen-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
    display: flex;
    flex-direction: column;
    padding: 15px;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    height: 25px;
}

.signal-bars {
    display: flex;
    gap: 3px;
    align-items: end;
}

.signal-bars .bar {
    width: 4px;
    background: linear-gradient(to top, #4ade80, #22c55e);
    border-radius: 2px;
    animation: signalPulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.signal-bars .bar:nth-child(1) { height: 6px; animation-delay: 0s; }
.signal-bars .bar:nth-child(2) { height: 8px; animation-delay: 0.1s; }
.signal-bars .bar:nth-child(3) { height: 10px; animation-delay: 0.2s; }
.signal-bars .bar:nth-child(4) { height: 12px; animation-delay: 0.3s; }

.live-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 700;
    color: white;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.4);
}

.live-dot {
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    animation: liveBlink 1.2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.quality-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    padding: 4px 8px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
}

.brand-logo {
    height: 12px;
    width: auto;
    filter: brightness(0) invert(1);
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.featured-channel {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border-radius: 12px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: featuredPulse 3s ease-in-out infinite;
}

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

.preview-thumbnail {
    width: 50px;
    height: 35px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.thumbnail-content {
    color: white;
    font-size: 16px;
    animation: playPulse 2s ease-in-out infinite;
}

.channel-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.channel-title {
    font-size: 10px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.program-title {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
}

.viewer-count {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 7px;
    color: #4ade80;
    margin-top: 2px;
}

.viewer-count i {
    font-size: 6px;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    flex: 1;
}

.channel-item {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border-radius: 10px;
    position: relative;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: channelPulse 4s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.channel-item:hover {
    transform: scale(1.08);
    border-color: rgba(220, 38, 38, 0.6);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.channel-item.active {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.8);
    animation: activeChannel 2.5s ease-in-out infinite;
    border-color: #dc2626;
}

.channel-item:nth-child(2) { animation-delay: 0.4s; }
.channel-item:nth-child(3) { animation-delay: 0.8s; }
.channel-item:nth-child(4) { animation-delay: 1.2s; }

.channel-logo {
    font-size: 9px;
    font-weight: 700;
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 3px 5px;
    border-radius: 5px;
    margin-bottom: 3px;
}

.channel-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.channel-name {
    font-size: 8px;
    font-weight: 600;
    color: white;
    line-height: 1;
}

.program-name {
    font-size: 7px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
}

.channel-status {
    position: absolute;
    top: 5px;
    right: 5px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: statusBlink 2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.6);
}

.trial-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 8px 12px;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
    animation: badgeGlow 2.5s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
    font-size: 14px;
    animation: iconSpin 3s linear infinite;
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-title {
    font-size: 10px;
    line-height: 1;
}

.trial-timer {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.timer-label {
    font-size: 7px;
    opacity: 0.8;
}

.timer-value {
    font-size: 9px;
    font-family: 'Courier New', monospace;
    font-weight: 700;
    animation: timerPulse 1.5s ease-in-out infinite;
}

.device-stand {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.stand-connector {
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, #444, #666);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stand-base {
    width: 100px;
    height: 30px;
    background: linear-gradient(135deg, #333, #555);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    position: relative;
}

.stand-base::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 8px;
    background: linear-gradient(135deg, #444, #666);
    border-radius: 4px;
}

.device-controls {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    justify-content: center;
}

.control-btn {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #555, #777);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
    animation: controlGlow 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.control-btn:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.control-btn i {
    font-size: 8px;
    color: white;
}

.control-btn.power { animation-delay: 0s; }
.control-btn.menu { animation-delay: 1.3s; }
.control-btn.volume { animation-delay: 2.6s; }

.trial-stats {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.4);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    position: relative;
}

.icon-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    opacity: 0.3;
    animation: iconGlow 2s ease-in-out infinite;
}

.stat-icon i {
    font-size: 18px;
    color: white;
    position: relative;
    z-index: 1;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    animation: numberCount 3s ease-out;
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
}

.stat-progress {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 5px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 2px;
    animation: progressFill 2s ease-out;
    box-shadow: 0 0 8px rgba(220, 38, 38, 0.5);
}

.trial-features-preview {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.feature-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    min-width: 80px;
}

.feature-preview:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.feature-icon i {
    font-size: 14px;
    color: white;
}

.feature-preview span {
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.feature-badge {
    font-size: 8px;
    font-weight: 700;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    padding: 2px 6px;
    border-radius: 8px;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.trial-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 25px;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    animation: ctaPulse 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trial-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.cta-content i {
    font-size: 16px;
    animation: rocketBounce 2s ease-in-out infinite;
}

.cta-arrow {
    color: white;
    font-size: 16px;
    animation: arrowSlide 2s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(0.8deg); }
    50% { transform: translateY(-15px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-0.8deg); }
}

@keyframes signalPulse {
    0%, 100% { 
        opacity: 0.5;
        transform: scaleY(1);
    }
    50% { 
        opacity: 1;
        transform: scaleY(1.2);
    }
}

@keyframes liveBlink {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.4;
        transform: scale(0.8);
    }
}

@keyframes featuredPulse {
    0%, 100% { 
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 rgba(220, 38, 38, 0);
    }
    50% { 
        border-color: rgba(220, 38, 38, 0.3);
        box-shadow: 0 0 15px rgba(220, 38, 38, 0.2);
    }
}

@keyframes playPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes channelPulse {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.03);
    }
}

@keyframes activeChannel {
    0%, 100% { 
        box-shadow: 0 0 25px rgba(220, 38, 38, 0.8);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 35px rgba(220, 38, 38, 1);
        transform: scale(1.1);
    }
}

@keyframes statusBlink {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(0.9);
    }
}

@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 30px rgba(220, 38, 38, 0.9);
        transform: scale(1.08);
    }
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes timerPulse {
    0%, 100% { 
        background: rgba(0, 0, 0, 0.3);
        color: white;
        transform: scale(1);
    }
    50% { 
        background: rgba(220, 38, 38, 0.4);
        color: #ffcccc;
        transform: scale(1.05);
    }
}

@keyframes controlGlow {
    0%, 100% { 
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
        background: linear-gradient(135deg, #555, #777);
    }
    50% { 
        box-shadow: 0 3px 15px rgba(220, 38, 38, 0.5);
        background: linear-gradient(135deg, #666, #888);
    }
}

@keyframes iconGlow {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes numberCount {
    0% { 
        transform: scale(0.5);
        opacity: 0;
    }
    50% { 
        transform: scale(1.1);
        opacity: 1;
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes progressFill {
    0% { 
        width: 0%;
        opacity: 0;
    }
    100% { 
        width: 100%;
        opacity: 1;
    }
}

@keyframes ctaPulse {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 8px 35px rgba(220, 38, 38, 0.6);
        transform: scale(1.02);
    }
}

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

@keyframes arrowSlide {
    0%, 100% { 
        transform: translateX(0px);
    }
    50% { 
        transform: translateX(5px);
    }
}

/* Comparison Section */
.comparison {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2a2a2a 70%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.comparison-mobile {
    display: none;
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: backgroundPulse 8s ease-in-out infinite;
}

.comparison::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(220, 38, 38, 0.02), transparent);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
}

.comparison-table::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.02), transparent, rgba(220, 38, 38, 0.02));
    pointer-events: none;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: linear-gradient(135deg, #dc2626, #ef4444, #dc2626);
    background-size: 200% 200%;
    color: white;
    font-weight: 700;
    text-align: center;
    position: relative;
    animation: headerShimmer 3s ease-in-out infinite;
}

.comparison-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.comparison-header > div {
    padding: 25px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.comparison-header > div:last-child {
    border-right: none;
}

.feature-column {
    text-align: left !important;
    font-size: 20px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tvcrown-column {
    font-size: 22px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.tvcrown-column::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 2px;
}

.other-column {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 600;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background-color 0.2s ease;
    position: relative;
}

.comparison-row:hover {
    background: rgba(220, 38, 38, 0.08);
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-cell {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 20px;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.feature-cell i {
    color: var(--primary-red);
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.tvcrown-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(220, 38, 38, 0.08));
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.tvcrown-cell::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, #dc2626, #ef4444, #dc2626);
    background-size: 100% 200%;
    animation: gradientShift 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.tvcrown-cell::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tvcrown-cell:hover::after {
    opacity: 1;
}

.tvcrown-cell i {
    color: #4ade80;
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(74, 222, 128, 0.3));
    animation: checkBounce 2s ease-in-out infinite;
}

.tvcrown-cell .highlight {
    color: #4ade80;
    font-weight: 800;
    font-size: 18px;
    text-shadow: 0 2px 4px rgba(74, 222, 128, 0.3);
    animation: numberGlow 2s ease-in-out infinite;
}

.other-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 25px 20px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.other-cell i {
    color: #ef4444;
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(239, 68, 68, 0.3));
    animation: xShake 3s ease-in-out infinite;
}

.other-cell .limited {
    color: #fbbf24;
    font-weight: 700;
    font-size: 14px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.08));
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid rgba(251, 191, 36, 0.4);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
    animation: limitedPulse 2s ease-in-out infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Enhanced Animations */
@keyframes backgroundPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes underlineGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

@keyframes checkBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes numberGlow {
    0%, 100% { text-shadow: 0 2px 4px rgba(74, 222, 128, 0.3); }
    50% { text-shadow: 0 2px 8px rgba(74, 222, 128, 0.6); }
}

@keyframes xShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-1px); }
    75% { transform: translateX(1px); }
}

@keyframes limitedPulse {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 4px 25px rgba(251, 191, 36, 0.4);
        transform: scale(1.05);
    }
}

/* Tablet Responsive Styles - Samsung Tab S9 and similar tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
        max-width: 100%;
    }
    
    /* Header Tablet */
    .header {
        padding: 15px 0;
    }
    
    
    .nav-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .nav-menu a {
        font-size: 16px;
        padding: 8px 12px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    /* Hero Section Tablet */
    .hero {
        padding: 160px 0 80px;
        min-height: 80vh;
        margin-top: 0;
    }
    
    .hero-container {
        max-width: 100%;
        padding: 0 20px;
        gap: 40px;
        display: grid;
        grid-template-columns: minmax(280px, 1fr);
        align-items: center;
        text-align: center;
    }
    
    .hero-content {
        width: 100%;
        max-width: 600px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 280px;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 30px;
        max-width: 600px;
    }
    
    .hero-ctas {
        display: flex;
        gap: 15px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
        width: 100%;
        flex-wrap: wrap;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    /* Refer Box Tablet */
    .refer-box {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .refer-content {
        padding: 25px;
    }
    
    .refer-header h3 {
        font-size: 20px;
    }
    
    .refer-content p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Quick Start Section Tablet */
    .quick-start {
        padding: 80px 0;
    }
    
    .quick-start-content h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .steps-container {
        gap: 30px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .unlock-box {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .unlock-content h3 {
        font-size: 24px;
    }
    
    .step {
        padding: 12px;
        gap: 10px;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
    
    .step-content p {
        font-size: 15px;
    }
    
    /* Features Section Tablet */
    .features {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .feature-card p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* Pricing Section Tablet */
    .pricing {
        padding: 80px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .pricing-card h3 {
        font-size: 22px;
    }
    
    .price .amount {
        font-size: 36px;
    }
    
    .features-list li {
        font-size: 15px;
        padding: 8px 0;
    }
    
    /* Trial Section Tablet */
    .trial {
        padding: 80px 0;
    }
    
    .trial-content {
        gap: 50px;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .trial-text h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .trial-text p {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .trial-features li {
        font-size: 16px;
        padding: 10px 0;
    }
    
    .trial-mockup {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Comparison Section Tablet */
    .comparison {
        padding: 80px 0;
    }
    
    .comparison-table {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .comparison-header {
        padding: 20px;
        font-size: 16px;
    }
    
    .comparison-row {
        padding: 18px 20px;
    }
    
    .comparison-row .feature-cell,
    .comparison-row .tvcrown-cell,
    .comparison-row .other-cell {
        font-size: 15px;
    }
    
    /* Device Compatibility Section Tablet */
    .devices {
        padding: 80px 0;
    }
    
    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .device-card {
        padding: 30px 25px;
    }
    
    .device-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .device-card p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* FAQ Section Tablet */
    .faq {
        padding: 80px 0;
    }
    
    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .faq-question h4 {
        font-size: 18px;
        padding: 20px 25px;
    }
    
    .faq-answer p {
        font-size: 15px;
        line-height: 1.6;
        padding: 0 25px 20px;
    }
    
    /* Contact Section Tablet */
    .contact {
        padding: 80px 0;
    }
    
    .contact-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-card {
        padding: 35px 30px;
    }
    
    .contact-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .contact-card p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    /* Footer Tablet */
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* Tablet Touch Optimizations */
    .btn {
        min-height: 48px;
        min-width: 48px;
        touch-action: manipulation;
    }
    
    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .faq-question {
        min-height: 60px;
        cursor: pointer;
    }
    
    .contact-link {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Tablet Landscape Optimizations */
    @media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
        .hero {
            padding: 160px 0 60px;
            min-height: 70vh;
            margin-top: 0;
        }
        
        .hero-container {
            flex-direction: row;
            align-items: center;
            gap: 60px;
        }
        
        .hero-content {
            flex: 1;
            text-align: left;
            align-items: flex-start;
        }
        
        .hero-ctas {
            justify-content: center;
            width: 100%;
        }
        
        .hero-image {
            flex: 1;
        }
        
        .pricing-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        .features-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }
        
        .devices-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
    }
    
    /* Tablet Portrait Optimizations */
    @media (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
        .hero-container {
            flex-direction: column;
            text-align: center;
        }
        
        .hero-content {
            max-width: 600px;
            margin: 0 auto;
            align-items: center;
            text-align: center;
        }
        
        .hero-ctas {
            justify-content: center;
            width: 100%;
        }
        
        .pricing-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .devices-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
    }
    
    /* Samsung Tab S9 Specific Optimizations */
    @media (min-width: 800px) and (max-width: 1024px) and (min-height: 1000px) {
        .hero {
            min-height: 85vh;
            margin-top: 0;
            padding-top: 160px;
        }
        
        .hero-title {
            font-size: 44px;
        }
        
        .hero-subtitle {
            font-size: 19px;
            max-width: 650px;
        }
        
        .section-header h2 {
            font-size: 38px;
        }
        
        .section-header p {
            font-size: 18px;
        }
    }
    
    /* Additional Tablet Optimizations */
    
    .device-selector {
        margin-bottom: 20px;
    }
    
    .device-count {
        padding: 12px 15px;
        font-size: 15px;
        min-height: 48px;
    }
    
    .comparison-mobile {
        display: none;
    }
    
    .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .trustpilot-badge {
        margin-top: 20px;
    }
    
    .trustpilot-badge .tp-stars {
        gap: 3px;
    }
    
    .trustpilot-badge .tp-box {
        font-size: 16px;
    }
    
    /* Improved spacing for tablet */
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        margin-bottom: 15px;
    }
    
    .section-header p {
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Better button spacing on tablet */
    .hero-ctas {
        padding: 18px;
    }
    
    .hero-ctas .btn {
        margin: 0;
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
        min-width: 180px;
        max-width: 250px;
        padding: 14px 20px;
        font-size: 15px;
        min-height: 48px;
        height: auto;
    }
    
    .hero-ctas .btn i {
        font-size: 18px;
    }
    
    .btn-refer {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    /* Improved form elements for tablet */
    .form-input,
    .form-select,
    .form-textarea {
        min-height: 48px;
        font-size: 16px;
        padding: 12px 16px;
    }
    
    /* Better card hover effects for tablet */
    .feature-card,
    .pricing-card,
    .device-card,
    .contact-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .feature-card:hover,
    .pricing-card:hover,
    .device-card:hover,
    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    /* Improved readability */
    .feature-card p,
    .device-card p,
    .contact-card p {
        line-height: 1.7;
    }
    
    /* Better spacing for lists */
    .features-list li,
    .trial-features li {
        padding: 12px 0;
        line-height: 1.6;
    }
    
    /* Improved navigation for tablet */
    .language-selector select {
        min-height: 44px;
        padding: 8px 12px;
        font-size: 15px;
    }
    
    /* Better social links spacing */
    .social-links {
        gap: 15px;
    }
    
    .social-links a {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }
}


/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .pricing .container {
        padding: 0 20px;
    }
    
    /* Header Mobile */
    .header {
        padding: 10px 0;
    }
    
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--black);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .nav-menu a {
        font-size: 18px;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 150px 0 60px;
        text-align: center;
        align-items: flex-start;
        margin-top: 0;
    }
    
    
    .hero-brand-text {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 28px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        border: none;
        outline: none;
        position: relative;
        overflow: hidden;
        min-height: 48px;
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #dc2626, #b91c1c, #991b1b);
        color: var(--white);
        border: none;
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    }
    
    .btn-secondary {
        background: var(--white);
        color: var(--primary-red);
        border: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .hero-ctas {
        display: flex;
        gap: 20px;
        justify-content: flex-start;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: flex-start;
        margin-bottom: 25px;
    }
    
    /* Quick Start Mobile */
    .quick-start {
        padding: 60px 0;
    }
    
    .quick-start-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step {
        padding: 12px 20px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    /* Features Mobile */
    .features {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .feature-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
    
    /* Comparison Mobile */
    .comparison {
        padding: 60px 0;
    }
    
    .comparison-table {
        display: none;
    }
    
    .comparison-mobile {
        display: block;
    }
    
    .comparison-mobile-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 20px;
        backdrop-filter: blur(5px);
    }
    
    .comparison-mobile-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .comparison-mobile-header h4 {
        color: var(--white);
        font-size: 16px;
        font-weight: 600;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 1;
    }
    
    .comparison-mobile-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .comparison-mobile-tvcrown {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        flex: 1;
    }
    
    .comparison-mobile-other {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        flex: 1;
    }
    
    .comparison-mobile-label {
        font-size: 12px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .comparison-mobile-tvcrown .comparison-mobile-label {
        color: #4ade80;
    }
    
    .comparison-mobile-other .comparison-mobile-label {
        color: #ef4444;
    }
    
    .comparison-mobile-value {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .comparison-mobile-tvcrown i {
        color: #4ade80;
        font-size: 16px;
    }
    
    .comparison-mobile-other i {
        color: #ef4444;
        font-size: 16px;
    }
    
    .comparison-mobile-tvcrown .highlight {
        color: #4ade80;
        font-weight: 700;
        font-size: 14px;
    }
    
    .comparison-mobile-other span {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
    }
    
    .comparison-mobile-other .limited {
        color: #fbbf24;
        font-weight: 700;
        font-size: 12px;
        background: rgba(251, 191, 36, 0.1);
        padding: 4px 8px;
        border-radius: 6px;
        border: 1px solid rgba(251, 191, 36, 0.3);
    }
    
    .comparison-mobile-vs {
        color: rgba(255, 255, 255, 0.5);
        font-size: 12px;
        font-weight: 600;
        margin: 0 10px;
    }
    
    /* Pricing Mobile */
    .pricing {
        padding: 60px 0;
    }
    
    /* Mobile styles now handled by device detection classes */
}

/* Old media queries removed - now using device detection classes */

/* Very small screens - force single column */
@media (max-width: 360px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
        padding: 0 10px;
    }
    
    .pricing-card {
        padding: 20px 15px;
    }
    
    .card-header h3 {
        font-size: 18px;
    }
    
    .price .amount {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .card-header h3 {
        font-size: 20px;
        text-align: center;
    }
    
    .price {
        text-align: center;
    }
    
    .price .amount {
        font-size: 36px;
    }
    
    .device-selector {
        margin: 20px 0;
        text-align: center;
    }
    
    .device-count {
        width: 100%;
        max-width: 200px;
        padding: 12px;
        font-size: 14px;
        margin: 0 auto;
    }
    
    .features-list {
        margin: 20px 0;
        text-align: left;
    }
    
    .features-list li {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        display: block;
    }
    
    /* Trial Section Mobile */
    .trial {
        padding: 60px 0;
    }
    
    .trial-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .trial-text h2 {
        font-size: 28px;
    }
    
    .trial-text p {
        font-size: 16px;
    }
    
    .trial-features {
        margin: 20px 0;
    }
    
    .trial-features li {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .trial-text .trial-cta-btn {
        display: none;
    }
    
    .trial-mockup .trial-cta-btn {
        display: inline-flex;
        width: 100%;
        max-width: 320px;
        padding: 12px 16px;
        font-size: 13px;
        margin-top: 20px;
        white-space: normal;
        justify-content: center;
        text-align: center;
        line-height: 1.3;
        min-height: 48px;
        align-items: center;
    }
    
    
    .trial-mockup {
        height: auto;
        gap: 15px;
    }
    
    .device-screen {
        width: 280px;
        height: 180px;
    }
    
    .screen-content {
        padding: 10px;
    }
    
    .screen-header {
        margin-bottom: 8px;
        height: 20px;
    }
    
    .signal-bars .bar {
        width: 3px;
    }
    
    .signal-bars .bar:nth-child(1) { height: 4px; }
    .signal-bars .bar:nth-child(2) { height: 6px; }
    .signal-bars .bar:nth-child(3) { height: 8px; }
    .signal-bars .bar:nth-child(4) { height: 10px; }
    
    .live-indicator {
        padding: 2px 6px;
        font-size: 8px;
    }
    
    .quality-badge {
        padding: 2px 6px;
        font-size: 7px;
    }
    
    .brand-logo {
        height: 10px;
    }
    
    .main-content {
        gap: 8px;
    }
    
    .featured-channel {
        padding: 8px;
    }
    
    .channel-preview {
        gap: 8px;
    }
    
    .preview-thumbnail {
        width: 40px;
        height: 28px;
    }
    
    .thumbnail-content {
        font-size: 12px;
    }
    
    .channel-details {
        gap: 1px;
    }
    
    .channel-title {
        font-size: 8px;
    }
    
    .program-title {
        font-size: 7px;
    }
    
    .viewer-count {
        font-size: 6px;
        margin-top: 1px;
    }
    
    .channel-grid {
        gap: 6px;
    }
    
    .channel-item {
        padding: 6px;
    }
    
    .channel-logo {
        font-size: 7px;
        padding: 2px 4px;
        margin-bottom: 2px;
    }
    
    .channel-name {
        font-size: 7px;
    }
    
    .program-name {
        font-size: 6px;
    }
    
    .status-dot {
        width: 4px;
        height: 4px;
    }
    
    .device-stand {
        margin-top: 10px;
    }
    
    .stand-connector {
        width: 3px;
        height: 15px;
    }
    
    .stand-base {
        width: 80px;
        height: 25px;
    }
    
    .device-controls {
        gap: 8px;
        margin-top: 10px;
    }
    
    .control-btn {
        width: 12px;
        height: 12px;
    }
    
    .control-btn i {
        font-size: 6px;
    }
    
    /* Devices Section Mobile */
    .devices {
        padding: 60px 0;
    }
    
    .devices-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px;
    }
    
    .device-card {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .device-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .device-card h3 {
        font-size: 16px;
    }
    
    .device-card p {
        font-size: 12px;
    }
    
    .device-icon {
        width: 50px;
        height: 50px;
    }
    
    .device-icon i {
        font-size: 20px;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* FAQ Mobile */
    .faq {
        padding: 60px 0;
    }
    
    .faq-container {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 15px;
        padding: 0 15px;
    }
    
    .faq-item {
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        margin-bottom: 0;
        min-height: 120px;
        width: 100%;
    }
    
    .faq-question {
        padding: 20px 18px 10px 18px;
        display: flex;
        align-items: flex-start;
        min-height: 50px;
    }
    
    .faq-question h4 {
        font-size: 16px;
        line-height: 1.4;
        margin: 0;
        flex: 1;
    }
    
    .faq-question i {
        display: none;
    }
    
    .faq-answer {
        display: flex;
        align-items: center;
    }
    
    .faq-answer p {
        padding: 15px 18px 20px 18px;
        font-size: 14px;
        line-height: 1.6;
        margin: 0;
        flex: 1;
    }
    
    .faq-answer::before {
        left: 18px;
        right: 18px;
    }
    
    .faq-item:hover {
        transform: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    
    .faq-item:hover::before {
        left: -100%;
    }
    
    /* FAQ Small Mobile */
    @media (max-width: 480px) {
        .faq {
            padding: 40px 0;
        }
        
        .faq-container {
            display: flex !important;
            flex-direction: column !important;
            grid-template-columns: none !important;
            gap: 12px;
            padding: 0 10px;
        }
        
        .faq-item {
            border-radius: 10px;
            min-height: 110px;
            width: 100%;
        }
        
        .faq-question {
            padding: 18px 15px 8px 15px;
            min-height: 45px;
        }
        
        .faq-question h4 {
            font-size: 15px;
            line-height: 1.3;
        }
        
        .faq-question i {
            display: none;
        }
        
        .faq-answer {
            display: flex;
            align-items: center;
        }
        
        .faq-answer p {
            padding: 12px 15px 18px 15px;
            font-size: 13px;
            line-height: 1.5;
            flex: 1;
        }
        
        .faq-answer::before {
            left: 15px;
            right: 15px;
        }
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .contact-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .contact-card p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .contact-link {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .footer-section p {
        font-size: 12px;
    }
    
    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin: 0;
        padding: 0;
    }
    
    .footer-section ul li {
        margin: 0;
    }
    
    .footer-section ul li a {
        font-size: 12px;
        padding: 5px 10px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .footer-section ul li a:hover {
        background: rgba(220, 38, 38, 0.2);
        color: var(--primary-red);
    }
    
    .social-links {
        justify-content: center;
        gap: 15px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    /* Download Page Mobile */
    .download-hero {
        padding: 100px 0 60px;
    }
    
    .download-title {
        font-size: 28px;
        line-height: 1.2;
        padding: 0 20px;
    }
    
    .download-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .android-info {
        padding: 0 20px;
    }
    
    .android-badge {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .android-description {
        font-size: 14px;
    }
    
    .apps-section {
        padding: 60px 0;
    }
    
    .app-card {
        padding: 30px 20px;
        width: 100%;
    }
    
    .app-card.featured {
        transform: none;
    }
    
    .app-card.featured:hover {
        transform: translateY(-10px) scale(1.02);
    }
    
    .popular-badge {
        font-size: 11px;
        padding: 5px 12px;
        min-width: 100px;
        top: -10px;
    }
    
    .app-title {
        font-size: 24px;
    }
    
    .app-icon {
        width: 60px;
        height: 60px;
    }
    
    .app-icon i {
        font-size: 24px;
    }
    
    .feature-item {
        font-size: 14px;
    }
    
    .app-description p {
        font-size: 14px;
    }
    
    .download-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .app-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .device-compatibility {
        padding: 60px 0;
    }
    
    .download-page .devices-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
        padding: 0 20px;
    }
    
    .device-item {
        padding: 25px 15px;
    }
    
    .device-item .device-icon {
        width: 50px;
        height: 50px;
    }
    
    .device-item .device-icon i {
        font-size: 20px;
    }
    
    .device-item h3 {
        font-size: 16px;
    }
    
    .device-item p {
        font-size: 12px;
    }
    
    .installation-section {
        padding: 60px 0;
    }
    
    .installation-section .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .installation-section .step {
        padding: 25px 15px;
    }
    
    .installation-section .step-content h3 {
        font-size: 18px;
    }
    
    .installation-section .step-content p {
        font-size: 14px;
    }
    
    .support-section {
        padding: 60px 0;
    }
    
    .support-content h2 {
        font-size: 28px;
    }
    
    .support-content p {
        font-size: 16px;
    }
    
    .support-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .support-actions .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
        font-size: 16px;
        min-height: 48px;
    }
    
    .downloader-codes-section {
        padding: 60px 0;
    }
    
    .downloader-logo img {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .downloader-instructions {
        padding: 30px 20px;
        margin: 30px auto;
    }

    .downloader-instructions h3 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .downloader-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .codes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .code-card {
        padding: 25px 20px;
    }

    .app-icon-small {
        width: 50px;
        height: 50px;
    }
    
    .code-number {
        font-size: 22px;
    }

    .code-display {
        max-width: 180px;
        padding: 12px 15px;
    }
}

/* Download Page Small Mobile */
@media (max-width: 480px) {
    .download-hero {
        padding: 80px 0 40px;
    }
    
    .download-title {
        font-size: 24px;
        padding: 0 15px;
    }
    
    .download-subtitle {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .android-info {
        padding: 0 15px;
    }
    
    .android-badge {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .android-description {
        font-size: 12px;
    }
    
    .apps-section {
        padding: 40px 0;
    }
    
    .app-card {
        padding: 25px 15px;
        width: 100%;
    }
    
    .popular-badge {
        font-size: 10px;
        padding: 4px 10px;
        min-width: 90px;
        top: -8px;
    }
    
    .app-title {
        font-size: 20px;
    }
    
    .app-subtitle {
        font-size: 14px;
    }
    
    .app-icon {
        width: 50px;
        height: 50px;
    }
    
    .app-icon i {
        font-size: 20px;
    }
    
    .feature-item {
        font-size: 13px;
    }
    
    .app-description p {
        font-size: 13px;
    }
    
    .download-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .app-info {
        gap: 8px;
    }
    
    .app-info .version,
    .app-info .size {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .device-compatibility {
        padding: 40px 0;
    }
    
    .download-page .devices-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 0 15px;
        gap: 15px;
    }
    
    .device-item {
        padding: 20px 12px;
    }
    
    .device-item .device-icon {
        width: 40px;
        height: 40px;
    }
    
    .device-item .device-icon i {
        font-size: 18px;
    }
    
    .device-item h3 {
        font-size: 14px;
    }
    
    .device-item p {
        font-size: 11px;
    }
    
    .installation-section {
        padding: 40px 0;
    }
    
    .installation-section .steps-container {
        padding: 0 15px;
        gap: 15px;
    }
    
    .installation-section .step {
        padding: 20px 12px;
    }
    
    .installation-section .step-number {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .installation-section .step-content h3 {
        font-size: 16px;
    }
    
    .installation-section .step-content p {
        font-size: 13px;
    }
    
    .support-section {
        padding: 40px 0;
    }
    
    .support-content h2 {
        font-size: 24px;
    }
    
    .support-content p {
        font-size: 14px;
    }
    
    .support-actions .btn {
        max-width: 260px;
        padding: 14px 28px;
        font-size: 16px;
        min-height: 48px;
    }
    
    .downloader-codes-section {
        padding: 40px 0;
    }
    
    .downloader-logo img {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .downloader-instructions {
        padding: 25px 15px;
        margin: 25px auto;
    }

    .downloader-instructions h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .downloader-step p {
        font-size: 14px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .codes-grid {
        padding: 0 15px;
        gap: 15px;
    }
    
    .code-card {
        padding: 20px 15px;
    }

    .app-icon-small {
        width: 45px;
        height: 45px;
    }
    
    .code-header h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .code-number {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .code-display {
        max-width: 160px;
        padding: 10px 12px;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2a2a2a 70%, #1a1a1a 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border: 1px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-icon i {
    color: var(--white);
    font-size: 32px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover h3 {
    color: var(--white);
    transform: translateY(-2px);
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Devices Section */
.devices {
    padding: 80px 0;
    background: var(--light-gray);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.device-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.device-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.6s ease;
}

.device-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border: 1px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.device-card:hover::before {
    left: 100%;
}

.device-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.device-icon i {
    color: var(--white);
    font-size: 24px;
    transition: all 0.4s ease;
}

.device-card:hover .device-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}

.device-card:hover .device-icon i {
    transform: scale(1.1);
}

.device-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.device-card p {
    color: var(--gray);
    font-size: 14px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.device-card:hover h3 {
    color: var(--white);
    transform: translateY(-2px);
}

.device-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2a2a2a 70%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.02) 0%, transparent 50%);
    pointer-events: none;
    animation: faqBackgroundPulse 8s ease-in-out infinite;
}

@keyframes faqBackgroundPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    min-height: 140px;
    display: flex;
    flex-direction: column;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.6s ease;
}

.faq-item:hover {
    border: 1px solid rgba(220, 38, 38, 0.4);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
    transform: translateY(-5px);
}

.faq-item:hover::before {
    left: 100%;
}

.faq-question {
    padding: 25px 30px 15px 30px;
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    min-height: 60px;
}

.faq-question h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.faq-question i {
    display: none;
}

.faq-answer {
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    flex: 1;
    display: flex;
    align-items: center;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
    opacity: 1;
}

.faq-answer p {
    padding: 20px 30px 30px 30px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
    flex: 1;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2a2a2a 70%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    pointer-events: none;
    animation: contactBackgroundPulse 6s ease-in-out infinite;
}

.contact::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(220, 38, 38, 0.01), transparent);
    animation: contactRotate 25s linear infinite;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-card:hover {
    background: rgba(220, 38, 38, 0.05);
    border-color: rgba(220, 38, 38, 0.3);
}

.contact-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
    color: white;
    position: relative;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.icon-glow {
    display: none;
}

.contact-card h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    flex-grow: 1;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-link::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.6s ease;
}

.contact-link:hover::before {
    left: 100%;
}

.contact-link:hover {
    background: linear-gradient(135deg, #ef4444, #f87171);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
}

.contact-link i {
    font-size: 18px;
    animation: linkIconBounce 2s ease-in-out infinite;
}

.contact-link span {
    position: relative;
    z-index: 1;
}

/* Contact Animations */
@keyframes contactBackgroundPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes contactRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes iconPulse {
    0%, 100% { 
        opacity: 0;
        transform: scale(1);
    }
    50% { 
        opacity: 0.3;
        transform: scale(1.1);
    }
}

@keyframes iconGlow {
    0%, 100% { 
        opacity: 0.2;
        transform: scale(1);
    }
    50% { 
        opacity: 0.4;
        transform: scale(1.05);
    }
}

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

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(220, 38, 38, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
}

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

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Download Page Styles */
.download-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 50%, #1a1a1a 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.download-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.download-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.download-title {
    font-size: 52px;
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 800;
}

.download-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.android-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin-top: 40px;
}

.android-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.android-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.android-badge i {
    font-size: 24px;
    color: #4ade80;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.android-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    max-width: 650px;
    text-align: center;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Apps Section */
.apps-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
    justify-items: center;
}

/* Tablet landscape and smaller desktops */
@media (max-width: 1024px) {
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        gap: 25px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .apps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 20px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
}

.app-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0 auto;
}


.app-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border: 1px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}


.app-card.featured {
    border: 3px solid var(--primary-red);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    overflow: visible;
}

.app-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
}

.app-header {
    margin-bottom: 20px;
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.app-icon i {
    color: var(--white);
    font-size: 32px;
}

.app-card:hover .app-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}

.app-title {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
}

.app-subtitle {
    color: var(--primary-red);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.app-features {
    margin-bottom: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--white);
    font-size: 16px;
}

.feature-item i {
    color: #4ade80;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.app-description {
    margin-bottom: 20px;
}

.app-description p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 16px;
}

.app-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.download-btn:hover {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.4);
}

.download-btn i {
    font-size: 18px;
}

.app-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.app-info .version,
.app-info .size {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Device Compatibility Section */
.device-compatibility {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2a2a2a 70%, #1a1a1a 100%);
    position: relative;
}

.device-compatibility::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.download-page .devices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

/* Mobile responsive for download page devices grid */
@media (max-width: 768px) {
    .download-page .devices-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .download-page .devices-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
}

.device-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.device-item:hover {
    transform: translateY(-10px);
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.device-item .device-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.device-item .device-icon i {
    color: var(--white);
    font-size: 24px;
}

.device-item:hover .device-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}

.device-item h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.device-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
}

/* Installation Section */
.installation-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.installation-section .steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.installation-section .step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.installation-section .step:hover {
    transform: translateY(-10px);
    background: rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.installation-section .step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.installation-section .step-content h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.installation-section .step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 16px;
}

/* Downloader Codes Section */
.downloader-codes-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.downloader-logo {
    text-align: center;
}

.downloader-logo img {
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.downloader-instructions {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    margin: 40px auto;
    max-width: 1000px;
    backdrop-filter: blur(10px);
}

.downloader-instructions h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.downloader-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.downloader-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41e3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.downloader-step p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.codes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.code-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.code-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(220, 53, 69, 0.3);
}

.app-icon-small {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.app-icon-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.code-header h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.code-display {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c41e3a 100%);
    border-radius: 15px;
    padding: 15px 20px;
    margin: 0 auto;
    max-width: 200px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    transition: all 0.3s ease;
}

.code-display:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
}

.code-number {
    color: var(--white);
    font-size: 26px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

/* Support Section */
.support-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    text-align: center;
}

.support-content {
    max-width: 600px;
    margin: 0 auto;
}

.support-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.support-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.support-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.support-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-actions .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.support-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.support-actions .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.support-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

/* Active navigation link */
.nav-menu a.active {
    color: var(--primary-red);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .language-selector {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 20px 0;
        border-top: 1px solid rgba(220, 38, 38, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
        padding: 0 10px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
        padding: 0 15px;
        text-align: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .trustpilot-badge {
        padding: 5px 10px;
        gap: 3px;
        font-size: 11px;
        margin: 20px 0 0 0;
        display: flex;
        justify-content: flex-start;
    }
    
    .trustpilot-badge--mobile {
        margin: 20px 0 0 0;
        display: flex;
        justify-content: flex-start;
    }
    
    .trustpilot-badge--hero {
        margin: 20px 0 0 0;
        display: flex;
        justify-content: flex-start;
    }
    
    .refer-box {
        position: relative;
        width: 100%;
        max-width: 320px;
        margin: 20px auto 0;
        transform: none !important;
        top: auto;
        right: auto;
    }
    
    .refer-box:hover {
        transform: none !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .quick-start-content h2 {
        font-size: 28px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .step {
        padding: 15px 20px;
    }
    
    .unlock-box {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .unlock-content h3 {
        font-size: 16px;
    }
    
    .unlock-content p {
        font-size: 13px;
    }
    
    .btn-unlock {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .trial-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .devices-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pricing .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        padding: 0 10px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
        padding: 0 15px;
        text-align: center;
    }
    
    .trustpilot-badge {
        padding: 4px 8px;
        gap: 2px;
        font-size: 10px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
        font-size: 16px;
        text-align: center;
        min-height: 48px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .standout-heading {
        font-size: 32px !important;
    }
    
    .pricing-card {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    
    /* Small screen styles now handled by device detection classes */
    
    
    .devices-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    /* Logo responsive adjustments */
    .logo-link {
        gap: 8px;
        padding: 6px 8px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .logo-text {
        font-size: 18px;
        letter-spacing: 0.5px;
    }
    
    .hero-logo-image {
        height: 80px;
    }
    
    .footer-logo-image {
        height: 30px;
    }
    
    .trustpilot-badge {
        padding: 4px 8px;
        font-size: 10px;
    }
    
    .tp-star {
        font-size: 12px;
    }
    
    .tp-label {
        font-size: 9px;
    }
    
    .tp-grade {
        font-size: 10px;
    }
    
    .tp-box {
        font-size: 11px;
    }
    
    .tp-score {
        font-size: 9px;
    }
    
    
    
    .refer-box {
        position: relative;
        width: 100%;
        max-width: 300px;
        margin: 15px auto 0;
        padding: 15px;
        transform: none !important;
        top: auto;
        right: auto;
    }
    
    .refer-box:hover {
        transform: none !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .quick-start-content h2 {
        font-size: 24px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .steps-container {
        gap: 20px;
        grid-template-columns: 1fr;
    }
    
    .step {
        padding: 12px 15px;
    }
    
    .unlock-box {
        padding: 20px 12px;
        margin-bottom: 15px;
    }
    
    .unlock-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .unlock-icon i {
        font-size: 24px;
    }
    
    .unlock-content h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .unlock-content p {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .btn-unlock {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 24px;
    }
    
    
    .step-content h3 {
        font-size: 16px;
    }
    
    .step-content p {
        font-size: 12px;
    }
    
    .device-icons i {
        font-size: 20px;
    }
    
    
    .refer-content h3 {
        font-size: 16px;
    }
    
    .refer-content p {
        font-size: 12px;
    }
    
    .btn-refer {
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* Trial page specific styles */
.trial-page {
    background: var(--black);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
}


/* Mobile-first responsive design */
.trial-page * {
    box-sizing: border-box;
}

/* Trial page header improvements */
.trial-page .header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trial-page .nav-logo {
    filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.3));
}

.trial-page .nav-menu a {
    transition: all 0.3s ease;
}

.trial-page .nav-menu a:hover {
    color: var(--primary-red);
    text-shadow: 0 0 8px rgba(220, 38, 38, 0.5);
}

/* Form input styles */
.form-input {
    width: 100%;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    outline: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile input adjustments */
@media (max-width: 768px) {
    .form-input {
        padding: 16px 20px;
        font-size: 15px;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .form-input {
        padding: 16px 20px;
        font-size: 16px;
        border-radius: 12px;
        min-height: 50px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .form-input:focus {
        transform: none;
        box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

.form-input:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.3), 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    transform: translateY(-2px);
    animation: inputPulse 0.3s ease-out;
}

@keyframes inputPulse {
    0% { transform: translateY(-2px) scale(1); }
    50% { transform: translateY(-2px) scale(1.02); }
    100% { transform: translateY(-2px) scale(1); }
}

.form-input:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Credentials inputs container */
.credentials-inputs {
    display: flex;
    gap: 12px;
}

.credentials-inputs .form-input {
    flex: 1;
}

/* Responsive adjustments for credentials inputs */
@media (max-width: 768px) {
    .credentials-inputs {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .credentials-inputs {
        gap: 15px;
        flex-direction: column;
    }
    
    .credentials-inputs .form-input {
        width: 100%;
        margin: 0;
    }
}

/* App Tip Styling */
.app-tip {
    margin-top: 15px;
    animation: slideInDown 0.3s ease-out;
}

.tip-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(10px);
}

.tip-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    margin-top: 2px;
}

.tip-icon i {
    font-size: 12px;
    color: var(--white);
}

.tip-text {
    flex: 1;
}

.tip-text p {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.tip-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #60a5fa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tip-link:hover {
    color: #93c5fd;
    text-shadow: 0 0 8px rgba(96, 165, 250, 0.3);
}

.tip-link::after {
    content: '→';
    font-size: 12px;
    transition: transform 0.3s ease;
}

.tip-link:hover::after {
    transform: translateX(3px);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile tip adjustments */
@media (max-width: 480px) {
    .app-tip {
        margin-top: 12px;
    }
    
    .tip-content {
        padding: 12px;
        gap: 10px;
    }
    
    .tip-icon {
        width: 18px;
        height: 18px;
    }
    
    .tip-icon i {
        font-size: 11px;
    }
    
    .tip-text p {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .tip-link {
        font-size: 13px;
    }
}

.trial-hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 50%, #1a1a1a 100%);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    min-height: 30vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

/* Mobile-first hero adjustments */
@media (max-width: 768px) {
    .trial-hero {
        padding: 100px 0 50px;
        min-height: 45vh;
        margin-top: 70px;
    }
}

@media (max-width: 480px) {
    .trial-hero {
        padding: 80px 0 40px;
        min-height: 40vh;
        margin-top: 60px;
    }
}

.trial-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.trial-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.trial-hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

/* Mobile hero content adjustments */
@media (max-width: 768px) {
    .trial-hero-content {
        padding: 0 15px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .trial-hero-content {
        padding: 0 10px;
    }
}

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

.trial-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 2s ease-in-out infinite alternate;
    line-height: 1.2;
}

/* Mobile title adjustments */
@media (max-width: 768px) {
    .trial-title {
        font-size: 30px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .trial-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
}

@keyframes titleGlow {
    from {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    to {
        text-shadow: 0 2px 20px rgba(220, 38, 38, 0.3), 0 0 30px rgba(220, 38, 38, 0.1);
    }
}

.trial-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Mobile subtitle adjustments */
@media (max-width: 768px) {
    .trial-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .trial-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
}

/* Process steps */
.trial-process {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 120px;
}

.process-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 8px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.process-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    font-weight: 500;
}

/* Mobile process adjustments */
@media (max-width: 768px) {
    .trial-process {
        gap: 25px;
        margin-top: 25px;
    }
    
    .process-step {
        max-width: 120px;
    }
    
    .process-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .process-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .trial-process {
        gap: 20px;
        margin-top: 20px;
    }
    
    .process-step {
        max-width: 100px;
    }
    
    .process-number {
        width: 32px;
        height: 32px;
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .process-text {
        font-size: 11px;
    }
}

.trial-selection {
    padding: 60px 0;
    background: var(--black);
}

/* Mobile selection adjustments */
@media (max-width: 768px) {
    .trial-selection {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .trial-selection {
        padding: 30px 0;
    }
}

.selection-box {
    max-width: 650px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 50px 40px;
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease-out;
    transition: all 0.3s ease;
}

.selection-box:focus-within {
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(220, 38, 38, 0.2), 0 0 20px rgba(220, 38, 38, 0.1);
}

/* Mobile selection box adjustments */
@media (max-width: 768px) {
    .selection-box {
        max-width: 95%;
        padding: 35px 25px;
        border-radius: 20px;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .selection-box {
        max-width: 95%;
        padding: 20px 12px;
        border-radius: 15px;
        margin: 0 10px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
    }
}

.selection-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

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

.selection-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, transparent 50%, rgba(220, 38, 38, 0.02) 100%);
    pointer-events: none;
}

.selection-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    animation: iconPulse 2s ease-in-out infinite alternate;
}

.header-icon i {
    font-size: 24px;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes iconPulse {
    from {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    }
    to {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(220, 38, 38, 0.5);
    }
}

.selection-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b, #ff8a80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(220, 38, 38, 0.3);
    line-height: 1.2;
}

/* Mobile header adjustments */
@media (max-width: 768px) {
    .header-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .header-icon i {
        font-size: 20px;
    }
    
    .selection-header h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .header-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .header-icon i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .selection-header h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
}

.selection-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Mobile header paragraph adjustments */
@media (max-width: 768px) {
    .selection-header p {
        font-size: 14px;
        line-height: 1.5;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .selection-header p {
        font-size: 13px;
        line-height: 1.4;
    }
}

.selection-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Mobile form adjustments */
@media (max-width: 768px) {
    .selection-form {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .selection-form {
        gap: 25px;
    }
    
    .form-group {
        gap: 10px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Mobile form group adjustments */
@media (max-width: 768px) {
    .form-group {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .form-group {
        gap: 8px;
    }
}

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Mobile label adjustments */
@media (max-width: 768px) {
    .form-label {
        font-size: 15px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .form-label {
        font-size: 16px;
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .form-label i {
        font-size: 16px;
    }
    
    .required {
        font-size: 16px;
    }
}

.form-label i {
    color: var(--primary-red);
    font-size: 18px;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

/* Mobile label icon adjustments */
@media (max-width: 768px) {
    .form-label i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .form-label i {
        font-size: 14px;
    }
}

.required {
    color: var(--primary-red);
    font-weight: 800;
    font-size: 16px;
    text-shadow: 0 0 8px rgba(220, 38, 38, 0.6);
}

/* Mobile required indicator adjustments */
@media (max-width: 768px) {
    .required {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .required {
        font-size: 14px;
    }
}

.custom-select {
    position: relative;
    width: 100%;
}

.form-select {
    width: 100%;
    padding: 18px 50px 18px 22px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    outline: none;
    cursor: pointer;
    transition: all 0.4s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile select adjustments */
@media (max-width: 768px) {
    .form-select {
        padding: 16px 45px 16px 20px;
        font-size: 15px;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .form-select {
        padding: 16px 45px 16px 20px;
        font-size: 16px;
        border-radius: 12px;
        min-height: 50px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .form-select:focus {
        transform: none;
        box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

.form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.3), 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    transform: translateY(-2px);
}

.form-select:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
}

.form-select option {
    background: var(--black);
    color: var(--white);
    padding: 10px;
}

.select-arrow {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    transition: all 0.4s ease;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.custom-select:hover .select-arrow {
    color: var(--primary-red);
    text-shadow: 0 0 12px rgba(220, 38, 38, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.continue-section {
    text-align: center;
    margin-top: 60px;
}

.continue-btn {
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 45px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red), #b91c1c);
    border: none;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Mobile button adjustments */
@media (max-width: 768px) {
    .continue-btn {
        padding: 18px 30px;
        font-size: 18px;
        border-radius: 45px;
        gap: 12px;
        width: 100%;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .continue-btn {
        padding: 14px 35px;
        font-size: 16px;
        border-radius: 35px;
        gap: 8px;
        max-width: 280px;
    }
}

.continue-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.6s ease;
}

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

.continue-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.continue-btn:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.5);
    background: linear-gradient(135deg, #ef4444, var(--primary-red), var(--dark-red));
    animation: buttonPulse 0.6s ease-in-out infinite alternate;
}

@keyframes buttonPulse {
    from {
        box-shadow: 0 15px 35px rgba(220, 38, 38, 0.5);
    }
    to {
        box-shadow: 0 20px 40px rgba(220, 38, 38, 0.7), 0 0 20px rgba(220, 38, 38, 0.3);
    }
}

.help-text {
    margin-top: 18px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-out;
}

/* Mobile help text adjustments */
@media (max-width: 768px) {
    .help-text {
        margin-top: 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .continue-btn {
        padding: 20px 25px;
        font-size: 18px;
        border-radius: 50px;
        gap: 12px;
        width: 100%;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
    
    .help-text {
        margin-top: 15px;
        font-size: 14px;
        text-align: center;
        padding: 0 10px;
    }
}

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

/* Success/Error states for help text */
.help-text.success {
    color: #4ade80;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
}

.help-text.error {
    color: #f87171;
    text-shadow: 0 0 10px rgba(248, 113, 113, 0.3);
}

/* Trial page responsive */
@media (max-width: 768px) {
    .trial-hero {
        padding: 60px 0 40px;
        min-height: 25vh;
    }
    
    .trial-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .trial-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .trial-process {
        gap: 20px;
        margin-top: 20px;
    }
    
    .process-step {
        max-width: 120px;
    }
    
    .process-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .process-text {
        font-size: 12px;
    }
    
    .trial-selection {
        padding: 60px 0;
    }
    
    .selection-box {
        max-width: 90%;
        padding: 50px 35px;
        margin: 0 auto;
        border-radius: 25px;
    }
    
    .selection-header h2 {
        font-size: 30px;
    }
    
    .selection-header p {
        font-size: 16px;
    }
    
    .selection-form {
        gap: 30px;
    }
    
    .form-select {
        padding: 18px 50px 18px 22px;
        font-size: 16px;
    }
    
    .continue-btn {
        padding: 18px 50px;
        font-size: 17px;
        width: 100%;
        max-width: 320px;
    }
    
    .help-text {
        font-size: 14px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .trial-hero {
        padding: 50px 0 30px;
        min-height: 20vh;
    }
    
    .trial-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .trial-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .trial-process {
        gap: 15px;
        margin-top: 15px;
    }
    
    .process-step {
        max-width: 100px;
    }
    
    .process-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .process-text {
        font-size: 11px;
    }
    
    .trial-selection {
        padding: 40px 0;
    }
    
    .selection-box {
        max-width: 95%;
        padding: 40px 25px;
        border-radius: 22px;
    }
    
    .selection-header {
        margin-bottom: 35px;
    }
    
    .selection-header h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .selection-header p {
        font-size: 15px;
    }
    
    .selection-form {
        gap: 25px;
    }
    
    .form-label {
        font-size: 16px;
    }
    
    .form-select {
        padding: 16px 45px 16px 20px;
        font-size: 15px;
        border-radius: 15px;
    }
    
    .continue-btn {
        padding: 16px 45px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }
    
    .help-text {
        font-size: 12px;
        padding: 0 15px;
        margin-top: 15px;
    }
}

/* Loading states and transitions */
.form-group {
    transition: all 0.3s ease;
}

.form-group.showing {
    animation: slideInFromLeft 0.5s ease-out;
}

.form-group.hiding {
    animation: slideOutToRight 0.3s ease-in;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Progress indicator */
.progress-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    min-width: 80px;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-icon i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.step-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.progress-line {
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.progress-step.active .step-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    transform: scale(1.1);
}

.progress-step.active .step-icon i {
    color: var(--white);
}

.progress-step.active .step-label {
    color: var(--white);
    font-weight: 700;
}

.progress-step.completed .step-icon {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-color: #4ade80;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.4);
}

.progress-step.completed .step-icon i {
    color: var(--white);
}

.progress-step.completed .step-label {
    color: #4ade80;
    font-weight: 700;
}

.progress-step.completed + .progress-line {
    background: linear-gradient(90deg, #4ade80, var(--primary-red));
}

/* Mobile progress indicator adjustments */
@media (max-width: 768px) {
    .progress-indicator {
        gap: 18px;
        margin-bottom: 25px;
        padding: 18px;
    }
    
    .progress-step {
        min-width: 65px;
    }
    
    .step-icon {
        width: 38px;
        height: 38px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
    }
    
    .step-icon i {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .step-label {
        font-size: 12px;
        font-weight: 600;
    }
    
    .progress-line {
        width: 25px;
    }
}

@media (max-width: 480px) {
    .progress-indicator {
        gap: 15px;
        margin-bottom: 20px;
        padding: 15px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    
    .progress-step {
        min-width: 60px;
        flex: 1;
    }
    
    .step-icon {
        width: 36px;
        height: 36px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
    }
    
    .step-icon i {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .step-label {
        font-size: 11px;
        font-weight: 600;
        margin-top: 6px;
    }
    
    .progress-line {
        width: 20px;
        height: 2px;
        background: rgba(255, 255, 255, 0.2);
    }
    
    .progress-step.active .step-icon {
        background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
        border-color: var(--primary-red);
        box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
        transform: none;
    }
    
    .progress-step.active .step-icon i {
        color: var(--white);
    }
    
    .progress-step.completed .step-icon {
        background: linear-gradient(135deg, #4ade80, #22c55e);
        border-color: #4ade80;
        box-shadow: 0 2px 8px rgba(74, 222, 128, 0.3);
    }
    
    .progress-step.completed .step-icon i {
        color: var(--white);
    }
}

/* IPTV Line Status Section */
.line-status {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(42, 16, 16, 0.3));
    position: relative;
    overflow: hidden;
}

.line-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(220,38,38,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.line-status .container {
    position: relative;
    z-index: 2;
}

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

.status-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.status-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

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

.status-btn {
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.status-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.4);
}

.status-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.status-result,
.status-error {
    animation: fadeInUp 0.5s ease;
}

.status-card,
.error-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.status-header,
.error-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-header i,
.error-header i {
    font-size: 24px;
    color: var(--primary-red);
}

.status-header h3,
.error-header h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}

.status-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-item:last-child {
    border-bottom: none;
}

.status-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-value {
    font-weight: 500;
    color: var(--white);
    font-size: 14px;
}

.status-value.status-active {
    color: #4ade80;
    font-weight: 600;
}

.status-value.status-inactive {
    color: #ef4444;
    font-weight: 600;
}

.error-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 14px;
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .line-status {
        padding: 80px 0;
    }
    
    .status-container {
        max-width: 90%;
    }
    
    .status-form-container {
        padding: 35px 25px;
        margin: 0 15px 30px;
    }
    
    .status-card,
    .error-card {
        padding: 25px 20px;
        margin: 0 15px;
    }
}

@media (max-width: 768px) {
    .line-status {
        padding: 60px 0;
    }
    
    .status-container {
        max-width: 95%;
    }
    
    .status-form-container {
        padding: 30px 20px;
        margin: 0 10px 25px;
        border-radius: 15px;
    }
    
    .status-card,
    .error-card {
        padding: 25px 20px;
        margin: 0 10px;
        border-radius: 15px;
    }
    
    .status-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px 0;
    }
    
    .status-label {
        font-size: 13px;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .status-value {
        font-size: 14px;
        font-weight: 500;
        word-break: break-word;
    }
    
    .status-btn {
        padding: 16px 30px;
        font-size: 15px;
        border-radius: 10px;
        width: 100%;
        margin-top: 15px;
    }
    
    .form-group input {
        padding: 16px 20px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .form-group label {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .status-header,
    .error-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .status-header h3,
    .error-header h3 {
        font-size: 20px;
        text-align: left;
    }
    
    .status-header i,
    .error-header i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .line-status {
        padding: 50px 0;
    }
    
    .status-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .status-form-container {
        padding: 25px 15px;
        margin: 0 5px 20px;
        border-radius: 12px;
    }
    
    .status-card,
    .error-card {
        padding: 20px 15px;
        margin: 0 5px;
        border-radius: 12px;
    }
    
    .form-group input {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .status-header,
    .error-header {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }
    
    .status-header h3,
    .error-header h3 {
        font-size: 18px;
    }
    
    .status-header i,
    .error-header i {
        font-size: 18px;
    }
    
    .status-item {
        padding: 12px 0;
        gap: 6px;
    }
    
    .status-label {
        font-size: 12px;
    }
    
    .status-value {
        font-size: 13px;
    }
    
    .status-btn {
        padding: 14px 25px;
        font-size: 14px;
        border-radius: 8px;
    }
}

@media (max-width: 360px) {
    .line-status {
        padding: 40px 0;
    }
    
    .status-form-container {
        padding: 20px 12px;
        margin: 0 3px 15px;
    }
    
    .status-card,
    .error-card {
        padding: 18px 12px;
        margin: 0 3px;
    }
    
    .form-group input {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .status-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .status-header h3,
    .error-header h3 {
        font-size: 16px;
    }
}

/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .line-status {
        padding: 70px 0;
    }
    
    .status-container {
        max-width: 80%;
    }
    
    .status-form-container {
        padding: 40px 30px;
    }
    
    .status-card,
    .error-card {
        padding: 30px 25px;
    }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .line-status {
        padding: 60px 0;
    }
    
    .status-container {
        max-width: 85%;
    }
    
    .status-form-container {
        padding: 35px 25px;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .line-status {
        padding: 120px 0;
    }
    
    .status-container {
        max-width: 700px;
    }
    
    .status-form-container {
        padding: 50px 45px;
    }
    
    .status-card,
    .error-card {
        padding: 35px 30px;
    }
    
    .form-group input {
        padding: 18px 25px;
        font-size: 17px;
    }
    
    .status-btn {
        padding: 20px 35px;
        font-size: 17px;
    }
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
    .line-status {
        padding: 140px 0;
    }
    
    .status-container {
        max-width: 800px;
    }
    
    .status-form-container {
        padding: 60px 50px;
    }
    
    .status-card,
    .error-card {
        padding: 40px 35px;
    }
}



