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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4f46e5;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #6366f1;
    color: white;
}

.btn-primary:hover {
    background-color: #4f46e5;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.btn-secondary:hover {
    background-color: #6366f1;
    color: white;
}

/* Header */
.header {
    background-color: #6366f1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: #dbeafe;
    color: #1e293b;
    padding: 80px 0 20px 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #475569;
    font-weight: 500;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background-color: #6366f1;
    color: white;
    border: none;
}

.hero .btn-primary:hover {
    background-color: #5046e4;
    transform: translateY(-2px);
}

.hero .btn-secondary {
    background-color: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.hero .btn-secondary:hover {
    background-color: #6366f1;
    color: white;
}

/* Share Section */
.share-section {
    background-color: #f8fafc;
    padding: 0;
}

/* Share Card */
.share-card {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
    max-width: 800px;
    margin: 1rem auto;
}

.share-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #92400e;
    font-weight: 500;
    text-align: center;
    justify-content: center;
}

.share-message svg {
    flex-shrink: 0;
}

.share-count {
    text-align: center;
    margin-bottom: 1rem;
}

.count-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #92400e;
    line-height: 1;
}

.count-label {
    display: block;
    font-size: 0.875rem;
    color: #92400e;
    margin-top: 0.25rem;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
    background-color: #1877f2;
}

.share-btn.whatsapp {
    background-color: #25d366;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.email {
    background-color: #6b7280;
}

.share-btn.pinterest {
    background-color: #bd081c;
}

.share-btn.messenger {
    background-color: #0084ff;
}

/* Legacy social share for video pages */
.social-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-share span {
    font-weight: 500;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn.facebook {
    background-color: #1877f2;
    color: white;
}

.social-btn.whatsapp {
    background-color: #25d366;
    color: white;
}

.social-btn.telegram {
    background-color: #0088cc;
    color: white;
}

.social-btn.copy-link {
    background-color: #64748b;
    color: white;
    border: none;
    cursor: pointer;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Notice Section */
.notice {
    background-color: #fef3c7;
    padding: 2rem 0;
}

.notice-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #fbbf24;
    border-radius: 12px;
    align-items: flex-start;
}

.notice-box svg {
    color: #92400e;
    flex-shrink: 0;
    margin-top: 2px;
}

.notice-box h3 {
    color: #92400e;
    margin-bottom: 0.5rem;
}

.notice-box p {
    color: #92400e;
    margin: 0;
}

/* Video Input Section */
.video-input {
    padding: 4rem 0;
    background-color: #f8fafc;
    text-align: center;
}

.video-input h2 {
    margin-bottom: 0.5rem;
}

.video-input p {
    color: #64748b;
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 1rem;
    flex-wrap: wrap;
}

.url-input {
    flex: 1;
    min-width: 300px;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.url-input:focus {
    outline: none;
    border-color: #6366f1;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background-color: white;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
}

.feature-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Supported Domains */
.supported-domains {
    padding: 4rem 0;
    text-align: center;
    background-color: #f8fafc;
}

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

.domain-item {
    padding: 1rem;
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-weight: 500;
    color: #475569;
    transition: all 0.3s ease;
}

.domain-item:hover {
    border-color: #6366f1;
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background-color: white;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #6366f1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    color: #6366f1;
    flex-shrink: 0;
}

.benefit-item span {
    color: #1e293b;
    font-weight: 500;
}

/* Testimonial Section */
.testimonial-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    color: #6366f1;
    margin-bottom: 1.5rem;
}

.testimonial-content blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: #1e293b;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.testimonial-content cite {
    color: #64748b;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: white;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.cta-section > p {
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: 8px;
    text-align: left;
}

.cta-feature svg {
    color: #10b981;
    flex-shrink: 0;
}

.cta-feature span {
    color: #1e293b;
    font-weight: 500;
}

.cta-text {
    max-width: 700px;
    margin: 2rem auto 0;
    color: #64748b;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.why-choose-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.why-choose-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
}

.why-choose-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-choose-item p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* How to Watch Section */
.how-to-watch-section {
    padding: 4rem 0;
    background-color: white;
}

.how-to-watch-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.how-to-steps {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.how-to-step {
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #6366f1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.how-to-step p {
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* Page Header Styles */
.page-header {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::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 20"><defs><radialGradient id="b" gradientUnits="userSpaceOnUse" cx="50" cy="0" r="50"><stop offset="0" stop-color="%23fff" stop-opacity="0.1"/><stop offset="1" stop-color="%23fff" stop-opacity="0"/></radialGradient></defs><rect width="100" height="20" fill="url(%23b)"/></svg>') repeat-x;
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    color: #6366f1;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    transform: scale(1.05);
}

.contact-details h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #64748b;
    margin-bottom: 1rem;
}

.contact-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #4f46e5;
}

.response-time {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f1f5f9;
    border-radius: 8px;
}

.response-time h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-faq h2 {
    color: #1e293b;
    margin-bottom: 2rem;
}

.mini-faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #6366f1;
    transition: all 0.3s ease;
}

.mini-faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.mini-faq-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.mini-faq-item p {
    color: #64748b;
    margin: 0;
}

/* Legal Content Styles */
.legal-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.03) 0%, transparent 50%);
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.legal-text h2 {
    color: #1e293b;
    margin: 2rem 0 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.legal-text h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-text ul, .legal-text ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: #64748b;
}

.notice-box {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.notice-box p {
    margin: 0;
    color: #92400e;
}

.contact-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

/* About Page Styles */
.about-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 40%);
}

.about-section {
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.about-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #6366f1 0%, #764ba2 100%);
    border-radius: 2px;
}

.about-section p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-section ul, .about-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.about-section li {
    color: #64748b;
    margin-bottom: 0.5rem;
}

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

.commitment-item {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.commitment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6366f1 0%, #764ba2 100%);
}

.commitment-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.commitment-icon {
    color: #6366f1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.commitment-item:hover .commitment-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    transform: scale(1.1);
}

.commitment-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.commitment-item p {
    color: #64748b;
    margin: 0;
}

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

.platform-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: #475569;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.platform-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.platform-item:hover {
    border-color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.2);
    color: #6366f1;
}

.contact-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.contact-btn:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #6b46c1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8fafc;
    color: #6366f1;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #6366f1;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-links {
        justify-content: center;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .about-section {
        padding: 2rem;
    }
    
    .legal-text {
        padding: 2rem;
    }
}

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

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

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

/* Add subtle animations to content */
.about-section:nth-child(odd) {
    animation: slideInLeft 0.8s ease-out;
}

.about-section:nth-child(even) {
    animation: fadeInUp 0.8s ease-out;
}

.commitment-item {
    animation: fadeInUp 0.8s ease-out;
}

.commitment-item:nth-child(1) { animation-delay: 0.1s; }
.commitment-item:nth-child(2) { animation-delay: 0.2s; }
.commitment-item:nth-child(3) { animation-delay: 0.3s; }

/* How It Works */
.how-it-works {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
}

.step h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.step p {
    color: #64748b;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f1f5f9;
}

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

.faq-icon {
    color: #6366f1;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    color: #64748b;
    margin: 0;
    padding: 1.5rem;
    line-height: 1.6;
}

/* Video Page Styles */
.video-page {
    padding: 2rem 0;
}

.video-header {
    text-align: center;
    margin-bottom: 2rem;
}

.video-description {
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

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

.video-player {
    position: relative;
    width: 100%;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.video-player video {
    width: 100%;
    height: auto;
    display: block;
}

.video-info {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.video-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.video-meta span {
    padding: 0.5rem 1rem;
    background-color: #f1f5f9;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #475569;
}

.video-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.video-details {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.video-description-section h2,
.video-description-section h3 {
    color: #1e293b;
}

.video-description-section ul {
    padding-left: 1.5rem;
}

.video-description-section li {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.social-share-section {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    height: fit-content;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section ul li a:hover {
    color: #f1f5f9;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #6366f1;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        gap: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .input-group {
        flex-direction: column;
    }

    .url-input {
        min-width: auto;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .video-info {
        flex-direction: column;
        align-items: stretch;
    }

    .video-actions {
        justify-content: center;
    }

    .video-details {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .notice-box {
        flex-direction: column;
        text-align: center;
    }

    .domains-grid {
        grid-template-columns: 1fr;
    }

    .share-card {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .share-message {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .share-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .share-btn {
        justify-content: center;
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }

    .social-share {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .social-btn {
        justify-content: center;
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
        text-align: center;
    }

    .video-meta {
        justify-content: center;
    }
}

/* Loading and Animation States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
.url-input:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

/* Player Page Styles */
.player-hero {
    background: #dbeafe;
    color: #1e293b;
    padding: 60px 0 40px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.player-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 700;
}

.player-subtitle {
    font-size: 1.2rem;
    color: #475569;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.player-section {
    padding: 3rem 0;
    background-color: #f8fafc;
}

.player-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-input-section {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: 2rem;
}

.video-input-section h2 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.input-help {
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
    margin-top: 0.5rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.video-player-section {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.video-header h3 {
    color: #1e293b;
    margin: 0;
    font-size: 1.5rem;
}

.video-controls {
    display: flex;
    gap: 0.5rem;
}

.video-player {
    position: relative;
    margin-bottom: 1.5rem;
}

.share-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.share-section h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.features-section {
    padding: 4rem 0;
    background: white;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Loading states */
.video-loading-overlay,
.video-error-overlay {
    border-radius: 12px !important;
}

/* Enhanced error message styling */
.error-message {
    animation: slideIn 0.3s ease-out;
}

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

/* Player responsive design */
@media (max-width: 768px) {
    .player-title {
        font-size: 2rem;
    }
    
    .player-subtitle {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .video-input-section,
    .video-player-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .video-header {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .video-controls {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .player-hero {
        padding: 40px 0 30px;
    }
    
    .player-title {
        font-size: 1.9rem;
        font-weight: 800;
    }
    
    .video-input-section,
    .video-player-section {
        padding: 1rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .url-input {
        min-width: auto;
    }
    
    .video-meta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .video-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid;
    }
    
    .btn-secondary {
        background-color: white;
    }
}

/* New sections styling for player.html */
.supported-domains-section {
    padding: 3rem 0;
    background: #f8fafc;
}

.supported-domains-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1e293b;
}

.domains-compact {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.domains-compact p:first-child {
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.domains-list {
    color: #6366f1;
    font-weight: 500;
    line-height: 1.6;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.domains-note {
    color: #64748b;
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 0;
}

.about-section, .what-is-section {
    padding: 4rem 0;
    background: white;
}

.about-section h2, .what-is-section h2 {
    color: #1e293b;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.features-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    font-size: 1.1rem;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.how-to-use-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.how-to-use-section h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
}

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

.step-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-4px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.step-item p {
    color: #64748b;
    margin: 0;
}

.no-login-text {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #10b981;
}

.why-choose-section {
    padding: 4rem 0;
    background: white;
}

.why-choose-section h2 {
    color: #1e293b;
    margin-bottom: 2rem;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #f0f9ff;
    transform: translateX(8px);
}

.benefit-icon {
    flex-shrink: 0;
    color: #6366f1;
}

.benefit-item span {
    color: #475569;
    font-weight: 500;
}

.use-cases-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.use-cases-section h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
}

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

.use-case-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.use-case-item h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.use-case-item p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    gap: 1rem;
}

/* Mobile responsive for new sections */
@media (max-width: 768px) {
    .domains-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}
