/* Jerkmate - Live Adult Webcams CSS Styles */
/* Modern, responsive design inspired by jerkmate.com with custom theme colors #fb4d94 and #221f87 */

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

html {
    overflow-x: hidden;
    max-width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #0a0a0a;
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 100%;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #fb4d94;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #fd7eb1;
}

/* Header Styles */
.header {
    background: rgba(10, 10, 10, 0.95);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

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

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
}

.nav-links a.active {
    background-color: rgba(255,255,255,0.3);
    color: #fff;
    font-weight: 700;
}

.nav-links .cta-btn {
    background: linear-gradient(135deg, #fb4d94 0%, #221f87 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(251, 77, 148, 0.3);
    border: none;
    cursor: pointer;
}

.nav-links .cta-btn:hover {
    background: linear-gradient(135deg, #221f87 0%, #fb4d94 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(251, 77, 148, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%), url('images/headhome.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 77, 148, 0.15) 0%, rgba(34, 31, 135, 0.15) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 60px 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 140px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fb4d94 0%, #221f87 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-cta {
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 180px;
    text-align: center;
}

.hero-cta.primary {
    background: linear-gradient(135deg, #fb4d94 0%, #221f87 100%);
    color: #fff;
    box-shadow: 0 6px 25px rgba(251, 77, 148, 0.4);
}

.hero-cta.primary:hover {
    background: linear-gradient(135deg, #221f87 0%, #fb4d94 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(251, 77, 148, 0.5);
}

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

.hero-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-disclaimer {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-top: 20px;
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-light {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.section-dark {
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: rgba(255,255,255,0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #fb4d94 0%, #221f87 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 77, 148, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #fb4d94 0%, #221f87 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(251, 77, 148, 0.4);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(251, 77, 148, 0.5);
}

.feature-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    object-fit: cover;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fb4d94;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
    font-size: 1rem;
}

/* Categories Section */
.cam-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Categories Grid for TV page */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.category-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 77, 148, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fb4d94 0%, #221f87 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(251, 77, 148, 0.3);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(251, 77, 148, 0.4);
}

.category-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.category-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cam-category {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cam-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cam-category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cam-category:hover img {
    transform: scale(1.08);
}

.cam-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 40px 25px 25px;
    text-align: center;
    text-decoration: none;
}

.cam-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.category-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.4;
}

.category-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.category-stats span {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-stats i {
    margin-right: 4px;
    color: #ffd700;
}

.live-indicator {
    background: linear-gradient(135deg, #fb4d94 0%, #221f87 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
    box-shadow: 0 6px 20px rgba(251, 77, 148, 0.4);
    display: inline-block;
    margin-top: 8px;
}

.category-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.category-feature {
    text-align: center;
    color: white;
}

.category-feature i {
    font-size: 2.5rem;
    color: #fb4d94;
    margin-bottom: 15px;
    display: block;
}

.category-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.category-feature p {
    opacity: 0.8;
    line-height: 1.5;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
    100% { opacity: 1; transform: scale(1); }
}

/* Featured Models Section */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.model-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
}

.model-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.model-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.model-img-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.model-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.model-card:hover .model-img-container img {
    transform: scale(1.08);
}

.model-status {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #fb4d94 0%, #221f87 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
    box-shadow: 0 6px 20px rgba(251, 77, 148, 0.4);
    z-index: 2;
}

.model-info {
    padding: 25px;
    color: white;
}

.model-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fb4d94;
    display: flex;
    align-items: center;
    gap: 8px;
}

.model-location {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 12px;
}

.model-location i {
    margin-right: 5px;
    color: #fb4d94;
}

.model-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffd700;
    font-size: 0.9rem;
}

.rating-text {
    font-size: 0.8rem;
    opacity: 0.8;
}

.model-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.model-viewers {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ff4d7e;
    font-weight: 600;
}

.model-viewers i {
    font-size: 1rem;
}

.model-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.model-tag {
    background: rgba(251, 77, 148, 0.1);
    color: #fb4d94;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(251, 77, 148, 0.2);
    transition: all 0.3s ease;
}

.model-tag:hover {
    background: rgba(251, 77, 148, 0.2);
    border-color: rgba(251, 77, 148, 0.4);
}

.models-cta {
    text-align: center;
    margin-top: 50px;
}

.models-cta .btn-secondary {
    background: linear-gradient(135deg, #fb4d94 0%, #221f87 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(251, 77, 148, 0.3);
    display: inline-block;
    margin-bottom: 15px;
    border: none;
    cursor: pointer;
}

.models-cta .btn-secondary:hover {
    background: linear-gradient(135deg, #221f87 0%, #fb4d94 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 77, 148, 0.4);
}

.models-cta p {
    opacity: 0.8;
    margin-top: 10px;
}

/* How It Works Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 77, 148, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.step-number {
    background: linear-gradient(135deg, #fb4d94 0%, #221f87 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(251, 77, 148, 0.4);
}

.step-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: #fb4d94;
    font-weight: 700;
}

.step-card p {
    color: rgba(255,255,255,0.8);
}

/* Success Stories Section */
.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    text-align: center;
}

.success-stat {
    background: rgba(251, 77, 148, 0.1);
    border: 1px solid rgba(251, 77, 148, 0.2);
    border-radius: 15px;
    padding: 25px;
    color: white;
}

.success-stat h3 {
    font-size: 2.5rem;
    color: #fb4d94;
    margin-bottom: 10px;
    font-weight: 700;
}

.success-stat p {
    opacity: 0.8;
    font-size: 1rem;
}

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

/* Testimonials Slider for TV page */
.testimonials-slider {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: none; /* Hidden by default, shown via JS */
}

.testimonial:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 77, 148, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.testimonial-content {
    position: relative;
    margin-bottom: 25px;
}

.testimonial-content p {
    color: white;
    font-style: italic;
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 5rem;
    color: rgba(251, 77, 148, 0.2);
    font-family: serif;
    z-index: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(251, 77, 148, 0.3);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    color: #fb4d94;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.testimonial-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 35px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #fb4d94;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #fb4d94;
}

.testimonial-badge {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 1rem;
}

.testimonial-card p {
    color: white;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    color: #fb4d94;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-details {
    font-size: 0.8rem;
    opacity: 0.7;
    color: white;
}

.author-details span {
    margin-right: 10px;
}

.author-details i {
    margin-right: 4px;
    color: #fb4d94;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 77, 148, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fb4d94 0%, #221f87 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(251, 77, 148, 0.3);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(251, 77, 148, 0.4);
}

.benefit-card h3 {
    color: #fb4d94;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.pricing-card.popular {
    border-color: rgba(251, 77, 148, 0.5);
    transform: scale(1.05);
    background: rgba(251, 77, 148, 0.08);
}

.pricing-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #fb4d94 0%, #221f87 100%);
    color: white;
    padding: 8px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 6px 20px rgba(251, 77, 148, 0.4);
}

.pricing-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 77, 148, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.pricing-card.popular:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(251, 77, 148, 0.12);
}

.pricing-header h3 {
    color: #fb4d94;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    font-size: 3rem;
    color: white;
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-price span {
    font-size: 1rem;
    opacity: 0.7;
}

.pricing-period {
    color: #666;
    margin-bottom: 30px;
}

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

.pricing-features li {
    color: white;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #4CAF50;
    font-size: 1rem;
}

.pricing-btn {
    background: linear-gradient(135deg, #fb4d94 0%, #221f87 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(251, 77, 148, 0.3);
    display: inline-block;
    width: 100%;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-btn:hover {
    background: linear-gradient(135deg, #221f87 0%, #fb4d94 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(251, 77, 148, 0.4);
}

.pricing-guarantee {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.guarantee-item {
    color: white;
}

.guarantee-item i {
    font-size: 2.8rem;
    color: #fb4d94;
    margin-bottom: 20px;
    display: block;
    text-shadow: 0 4px 15px rgba(251, 77, 148, 0.3);
}

.guarantee-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.guarantee-item p {
    opacity: 0.8;
    line-height: 1.5;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

.faq-item:hover {
    border-color: rgba(251, 77, 148, 0.4);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.faq-question:hover h3 {
    color: #fb4d94;
}

.faq-question:hover {
    color: #fb4d94;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-question i {
    font-size: 1.2rem;
    color: #fb4d94;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 1000px; /* Increased to accommodate more content */
    opacity: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #fb4d94 0%, #221f87 50%, #fb4d94 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -20px) rotate(180deg); }
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 200px;
}

.cta-btn.primary {
    background-color: white;
    color: #fb4d94;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    background: #f8f8f8;
    color: #221f87;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.cta-btn.secondary:hover {
    transform: translateY(-5px);
    background: white;
    color: #fb4d94;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
    color: white;
}

.cta-feature i {
    color: #4CAF50;
    font-size: 1.2rem;
    text-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: white;
    padding: 100px 0 40px;
    margin-top: 100px;
    border-top: 1px solid rgba(251, 77, 148, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #fb4d94 50%, transparent 100%);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.footer-logo h3, .footer-logo span {
    color: #fb4d94;
    font-size: 1.9rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 10px rgba(251, 77, 148, 0.3);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}



.footer-section {
    flex: 0 0 auto;
    min-width: 150px;
}

.footer-section.main {
    flex: 1;
    max-width: 300px;
}

.footer-section h3 {
    color: #fb4d94;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #fb4d94 0%, #221f87 100%);
    border-radius: 2px;
}

.footer-section p {
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: #fb4d94;
    transform: translateX(8px);
}

.footer-section ul li a i {
    font-size: 0.9rem;
    width: 16px;
}



.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content {
    width: 100%;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-badge.age {
    background: linear-gradient(135deg, #fb4d94, #221f87);
    border-color: #fb4d94;
}

.footer-badge.verified {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    border-color: #4CAF50;
}

.footer-badge.secure {
    background: linear-gradient(45deg, #2196F3, #1976D2);
    border-color: #2196F3;
}

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

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand {
         max-width: 100%;
     }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/headhome.jpg');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.about-section {
    padding: 80px 0;
}

.about-section h2 {
    font-size: 2.8rem;
    margin-bottom: 35px;
    color: #fb4d94;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 4px 15px rgba(251, 77, 148, 0.3);
}

.about-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

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

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.about-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 77, 148, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.about-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.about-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: #fb4d94;
    font-weight: 700;
}

.about-card p {
    color: rgba(255,255,255,0.8);
}

/* TV Page Styles */
.tv-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/headhome.jpg');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

/* Button Styles */
.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    padding: 15px 40px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

.btn-primary {
    background: #ff4d94;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 77, 148, 0.3);
}

.btn-primary:hover {
    background: #ff6ba9;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 77, 148, 0.4);
}

.btn-secondary {
    background: #00c8ff;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 200, 255, 0.3);
}

.btn-secondary:hover {
    background: #33d6ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 200, 255, 0.4);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.tv-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 60px 20px;
}

.tv-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* TV Grid and Cards */
.tv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tv-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
}

.tv-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 77, 148, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tv-thumbnail {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.tv-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tv-card:hover .tv-thumbnail img {
    transform: scale(1.08);
}

.tv-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.live-badge {
    background: linear-gradient(135deg, #fb4d94 0%, #221f87 100%);
    color: white;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(251, 77, 148, 0.4);
}

.premium-badge {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.tv-viewers {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
}

.tv-info {
    padding: 20px;
}

.tv-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fb4d94;
    font-weight: 700;
}

.tv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tv-tags span {
    background: rgba(251, 77, 148, 0.1);
    color: #fb4d94;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(251, 77, 148, 0.2);
}

.tv-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.tv-price-watch {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tv-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
}

.tv-performer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-style: italic;
}

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

.tv-feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.tv-feature:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 77, 148, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.tv-feature img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.tv-feature h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: #fb4d94;
    font-weight: 700;
}

.tv-feature p {
    color: rgba(255,255,255,0.8);
}

.tv-channels {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.tv-channel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.tv-channel:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(251, 77, 148, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.channel-img {
    height: 150px;
    overflow: hidden;
}

.channel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.tv-channel:hover .channel-img img {
    transform: scale(1.1);
}

.channel-info {
    padding: 15px;
    text-align: center;
}

.channel-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.channel-info p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Terms & Privacy Pages */
.legal-hero, .privacy-hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('images/headhome.jpg');
    background-size: cover;
    background-position: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.legal-content, .privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h2, .privacy-section h2 {
    font-size: 2rem;
    margin: 45px 0 25px;
    color: #fb4d94;
    font-weight: 700;
    border-bottom: 2px solid rgba(251, 77, 148, 0.3);
    padding-bottom: 10px;
}

.legal-content h3, .privacy-section h3 {
    font-size: 1.5rem;
    margin: 35px 0 18px;
    color: #fb4d94;
    font-weight: 600;
}

.legal-content p, .legal-content ul, .legal-content ol,
.privacy-section p, .privacy-section ul, .privacy-section ol {
    margin-bottom: 20px;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.legal-content ul, .legal-content ol,
.privacy-section ul, .privacy-section ol {
    padding-left: 20px;
}

.legal-content li, .privacy-section li {
    margin-bottom: 10px;
}

.legal-content a, .privacy-section a {
    color: #fb4d94;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-content a:hover, .privacy-section a:hover {
    color: #221f87;
}

.legal-content .highlight, .privacy-section .highlight {
    background-color: rgba(251, 77, 148, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin: 35px 0;
    border-left: 4px solid #fb4d94;
    backdrop-filter: blur(10px);
}

.legal-content .highlight p:last-child, .privacy-section .highlight p:last-child {
    margin-bottom: 0;
}

/* Privacy Page Specific Styles */
.toc-container {
    background: rgba(34, 31, 135, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid rgba(251, 77, 148, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.toc-container h2 {
    margin-top: 0;
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fb4d94;
    border-bottom: none;
    padding-bottom: 0;
}

.toc-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.toc-list li {
    margin-bottom: 10px;
}

.toc-list a {
    display: block;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.toc-list a:hover, .toc-list a.active {
    background: rgba(251, 77, 148, 0.2);
    border-left-color: #fb4d94;
    transform: translateX(5px);
    color: #fb4d94;
}

.privacy-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section:last-child {
    border-bottom: none;
}

.contact-info {
    background: rgba(34, 31, 135, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
    border: 1px solid rgba(251, 77, 148, 0.2);
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #fb4d94 0%, #221f87 100%);
        flex-direction: column;
        padding: 25px 0;
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        backdrop-filter: blur(20px);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid, .cam-categories, .models-grid, .steps-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Timeline Responsive Styles */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        justify-content: flex-start;
        padding-left: 60px;
    }
    
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content {
        width: 100%;
        max-width: 100%;
    }
    
    /* Team Responsive Styles */
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .team-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-card, .step-card, .testimonial {
        padding: 20px;
    }
    
    /* Timeline Mobile Styles */
    .timeline {
        padding: 10px;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-content h3 {
        font-size: 1.5rem;
    }
    
    .timeline-content h4 {
        font-size: 1.2rem;
    }
    
    /* Team Mobile Styles */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .team-image {
        height: 220px;
    }
    
    .team-member h3 {
        font-size: 1.3rem;
        margin: 15px 15px 5px;
    }
    
    .team-role {
        margin: 0 15px 8px;
        font-size: 1rem;
    }
    
    .team-bio {
        padding: 0 15px 15px;
        font-size: 0.9rem;
    }
}

/* Timeline Styles for Our Growth Journey */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, #fb4d94, #221f87);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-dot {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #fb4d94;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 10px rgba(251, 77, 148, 0.5);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    width: 45%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.timeline-content h3 {
    color: #fb4d94;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.timeline-content h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Team Styles for Leadership Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.team-member:hover .team-image img {
    transform: scale(1.05);
}

.team-member h3 {
    color: #fb4d94;
    font-size: 1.5rem;
    margin: 20px 20px 5px;
}

.team-role {
    color: #fff;
    font-weight: 600;
    margin: 0 20px 10px;
    font-size: 1.1rem;
}

.team-bio {
    color: #e0e0e0;
    padding: 0 20px 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

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

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
}