/* 
* RedNet Premium UI - 2025 Design System
* Modern, Clean, Glassmorphism, Mobile-First
*/
:root {
    --primary: #ff003c;
    --primary-dark: #cc0030;
    --secondary: #2d3436;
    --accent: #00d2d3;
    --background: #0f0f0f;
    --surface: #1e1e1e;
    --text: #ffffff;
    --text-secondary: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --nav-bg: rgba(15, 15, 15, 0.8);
    --font-main: 'Google Sans', 'Inter', sans-serif;
    --font-heading: 'Google Sans', 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --feedback-bg: rgba(30, 30, 30, 0.6);
    --input-bg: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] {
    --background: #f0f2f5;
    --surface: #ffffff;
    --text: #1c1e21;
    --text-secondary: #65676b;
    --glass: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.1);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    --nav-bg: rgba(255, 255, 255, 0.8);
    --feedback-bg: rgba(255, 255, 255, 0.8);
    --input-bg: rgba(0, 0, 0, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-main);
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--surface);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 5%;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: -0.5px;
    text-decoration: none;
    position: absolute;
    left: 0;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--primary);
    opacity: 0;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
    opacity: 1;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: absolute;
    right: 0;
}

.theme-toggle:hover {
    background: var(--glass);
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    padding: 8rem 5% 4rem;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 60, 0.15) 0%, transparent 50%);
}

.mobile-badge {
    background: rgba(255, 0, 60, 0.1);
    border: 1px solid rgba(255, 0, 60, 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInDown 0.8s ease-out;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.gradient-text {
    background: linear-gradient(135deg, #ff003c 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

/* Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 60, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 60, 0.4);
}

.btn-secondary {
    background: var(--glass);
    color: var(--text);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Special Learn More Button */
.btn-learn-more {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-learn-more:hover {
    border-color: var(--primary);
    background: rgba(255, 0, 60, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.3);
    transform: translateY(-3px) scale(1.05);
}

.btn-learn-more .material-icons {
    transition: transform 0.4s ease;
}

.btn-learn-more:hover .material-icons {
    transform: translateX(5px);
}

/* Features Grid */
.features-section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 60, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.info-card::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--primary);
    opacity: 0;
    z-index: 2;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 0, 60, 0.15);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover::after {
    width: 100%;
    opacity: 1;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 60, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 1.5rem auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.info-card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(255, 0, 60, 0.3);
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Stats Section - Marquee */
.stats-section {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    padding: 4rem 0;
    background: var(--surface);
    margin: 4rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.stats-track {
    display: inline-flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
}

.stats-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.stat-item {
    text-align: center;
    flex-shrink: 0;
    width: 150px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feedback Section */
.feedback-section {
    padding: 4rem 5%;
    display: flex;
    justify-content: center;
}

.feedback-container {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    font-size: 2rem;
    color: #ffd700;
    cursor: pointer;
}

textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    color: var(--text);
    font-family: var(--font-main);
    resize: vertical;
    margin-bottom: 1rem;
    transition: var(--transition);
}

textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--surface);
    padding: 3rem 5%;
    margin-top: auto;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--primary);
    opacity: 0;
}

.footer-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
    transform: translateY(-2px);
}

.footer-links a:hover::after {
    width: 100%;
    opacity: 1;
}

.heart-icon {
    color: var(--primary);
    font-size: 1rem;
    vertical-align: middle;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    .stats-section {
        gap: 2rem;
    }
}

/* About Section */
.about-section {
    padding: 4rem 5%;
    background: var(--surface);
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Premium Feedback Section */
.feedback-section {
    padding: 6rem 5%;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.feedback-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 60, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.feedback-card {
    background: var(--feedback-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 30px;
    width: 100%;
    max-width: 600px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feedback-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 60, 0.3);
}

.feedback-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feedback-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.star-rating-container {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.star-rating-container:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 0, 60, 0.2);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.1);
}

.star-icon {
    font-size: 2.5rem;
    color: #4a4a4a;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    user-select: none;
}

.star-icon.active {
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.star-icon:hover {
    transform: scale(1.2) rotate(5deg);
}

.feedback-input-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.feedback-textarea {
    width: 100%;
    background: var(--input-bg);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    color: var(--text);
    font-family: var(--font-main);
    font-size: 1rem;
    resize: none;
    min-height: 120px;
    transition: all 0.3s ease;
}

.feedback-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 4px rgba(255, 0, 60, 0.1);
}

.feedback-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #ff4757 100%);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 0, 60, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 0, 60, 0.3);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Success State */
.success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 0.5s ease-out;
}

.success-icon {
    font-size: 4rem;
    color: #51ff00;
    margin-bottom: 0.5rem;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }

    70% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Glitch Effect Styles */
.glitch-wrapper {
    position: relative;
    display: inline-block;
}

.glitch-active {
    animation: glitch-skew 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    color: var(--primary) !important;
    background: none !important;
    -webkit-text-fill-color: var(--primary) !important;
}

.glitch-active::before,
.glitch-active::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-active::before {
    color: #00ffff;
    z-index: -1;
    animation: glitch-anim-1 0.4s infinite linear alternate-reverse;
}

.glitch-active::after {
    color: #ff003c;
    z-index: -2;
    animation: glitch-anim-2 0.4s infinite linear alternate-reverse;
}

@keyframes glitch-skew {
    0% {
        transform: skew(0deg);
    }

    10% {
        transform: skew(-25deg);
    }

    20% {
        transform: skew(20deg);
    }

    30% {
        transform: skew(-15deg);
    }

    40% {
        transform: skew(15deg);
    }

    50% {
        transform: skew(-10deg);
    }

    60% {
        transform: skew(10deg);
    }

    70% {
        transform: skew(-5deg);
    }

    80% {
        transform: skew(5deg);
    }

    100% {
        transform: skew(0deg);
    }
}

@keyframes glitch-anim-1 {
    0% {
        clip-path: inset(20% 0 80% 0);
        transform: translate(-10px, 5px);
    }

    20% {
        clip-path: inset(60% 0 10% 0);
        transform: translate(10px, -5px);
    }

    40% {
        clip-path: inset(40% 0 50% 0);
        transform: translate(-10px, 10px);
    }

    60% {
        clip-path: inset(80% 0 5% 0);
        transform: translate(10px, -10px);
    }

    80% {
        clip-path: inset(10% 0 40% 0);
        transform: translate(-5px, 5px);
    }

    100% {
        clip-path: inset(30% 0 20% 0);
        transform: translate(5px, -5px);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip-path: inset(10% 0 60% 0);
        transform: translate(10px, -5px);
    }

    20% {
        clip-path: inset(30% 0 20% 0);
        transform: translate(-10px, 5px);
    }

    40% {
        clip-path: inset(70% 0 10% 0);
        transform: translate(10px, -10px);
    }

    60% {
        clip-path: inset(20% 0 50% 0);
        transform: translate(-10px, 10px);
    }

    80% {
        clip-path: inset(50% 0 30% 0);
        transform: translate(5px, -5px);
    }

    100% {
        clip-path: inset(0% 0 80% 0);
        transform: translate(-5px, 5px);
    }
}

/* Feedback Feed Styles */
.feed-wrapper {
    max-width: 780px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.feed-header h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text);
}

.feed-list {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 8px;
}

.feed-item {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 1rem 0;
    display: flex;
    gap: 1rem;
    transition: var(--transition);
}

.feed-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 0, 60, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.feed-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feed-body {
    flex: 1;
}

.feed-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.feed-stars {
    color: #ffd700;
    font-size: 1rem;
    letter-spacing: 2px;
}

.feed-message {
    color: var(--text);
    line-height: 1.6;
}

.load-more {
    display: block;
    margin: 2rem auto;
    background: var(--glass);
    color: var(--text);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.load-more:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.hidden {
    display: none !important;
}

/* Sections Details */
.sections {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.section-card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin: 1rem 0;
    overflow: hidden;
    transition: var(--transition);
}

.section-summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text);
    position: relative;
    list-style: none;
}

.section-summary::-webkit-details-marker {
    display: none;
}

.section-summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

details[open] .section-summary::after {
    transform: rotate(45deg);
}

.section-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 60, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

.date {
    color: var(--text-secondary);
    opacity: 0.8;
}

.read-more {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition);
}

.read-more:hover {
    gap: 0.5rem;
    color: var(--primary-light);
}

/* FAQ Page Styles */
.intro {
    font-size: 1.2rem;
    color: var(--text);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.faq-section {
    background: var(--surface);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.faq-section:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 0, 60, 0.2);
}

.faq-section:last-child {
    margin-bottom: 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--glass-border);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    font-family: var(--font-heading);
}

.faq-item p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 0, 60, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 60, 0.4);
    background: var(--primary-dark);
}

/* Terms & Privacy Page Styles */
.terms-container,
.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.terms-section,
.privacy-section {
    margin-bottom: 2rem;
}

.terms-section h2,
.privacy-section h2 {
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section p,
.privacy-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.terms-section ul,
.privacy-section ul {
    color: var(--text-secondary);
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.terms-section li,
.privacy-section li {
    margin-bottom: 0.5rem;
}

/* Contact Page Specifics */
.contact-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

.contact-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Watch & Channel Page Styles */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.media-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary);
}

.media-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    position: relative;
    overflow: hidden;
}

.media-thumbnail img,
.media-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.media-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.media-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.media-actions {
    margin-top: auto;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.action-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}

.action-btn:hover {
    background: rgba(255, 0, 60, 0.1);
    color: var(--primary);
}

.action-btn.active {
    color: var(--primary);
    background: rgba(255, 0, 60, 0.1);
}

/* Tab Bar */
.tab-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--surface);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 1rem;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 0, 60, 0.3);
}

/* Search Bar */
.search-container {
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
    display: flex;
    gap: 1rem;
}

.search-input {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    color: var(--text);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 0, 60, 0.1);
}

/* Channel Studio Styles */
.studio-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    color: var(--text);
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.3);
}

.preview-container {
    width: 100%;
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.1);
    border: 2px dashed var(--glass-border);
    display: none;
}

.preview-container img {
    width: 100%;
    height: auto;
    display: block;
}

.file-input-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.file-input-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-zone {
    border: 2px dashed var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
}

.upload-zone:hover {
    border-color: var(--primary);
    background: rgba(255, 0, 60, 0.05);
}

.divider {
    height: 1px;
    background: var(--glass-border);
    margin: 3rem 0;
}