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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid #333;
}

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

.nav-logo h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFA700 0%, #FFA700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex: 1;
    margin: 0 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

.nav-link:hover {
    color: #FFA700;
}

.nav-link.active {
    color: #FFA700;
    font-weight: 600;
}

.nav-auth {
    display: flex;
    gap: 1rem;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #FFA700 0%, #FFA700 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 167, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #FFA700;
    border: 2px solid #FFA700;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #ffffff;
    color: #0a0a0a;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(135deg, #FFA700 0%, #FFA700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin: 2rem 0;
    align-items: center;
    justify-content: flex-start;
}

.store-badge {
    display: inline-block;
    transition: transform 0.3s ease;
    height: 45px;
    line-height: 0;
    flex-shrink: 0;
}

.store-badge:hover {
    transform: translateY(-3px);
}

.store-badge img {
    height: 45px;
    width: auto;
    max-width: none;
    border-radius: 6px;
    display: block;
    object-fit: contain;
}

/* Ensure both badges have the same visual footprint */
.store-badge:first-child img {
    width: 140px;
    height: 45px;
    object-fit: contain;
}

/* Play Store badge sizing handled by inline styles */
.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FFA700;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 320px;
    height: 640px;
    margin: 0 auto;
    background: #111;
    border-radius: 36px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #222;
    border-radius: 3px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    display: block;
}

@media (max-width: 900px) {
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
}

.drama-preview {
    text-align: center;
    width: 100%;
}

.drama-thumbnail {
    width: 100%;
    height: 180px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    margin-bottom: 1.2rem;
}

.drama-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.drama-thumbnail i {
    font-size: 2rem;
    color: white;
}

.drama-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.drama-info p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #0a0a0a;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #cccccc;
}

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

.feature-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Drama Showcase */
.drama-showcase {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.drama-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.drama-card:hover {
    transform: translateY(-5px);
}

.drama-thumbnail {
    position: relative;
    overflow: hidden;
}

.drama-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.drama-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drama-card:hover .drama-overlay {
    opacity: 1;
}

.drama-overlay i {
    font-size: 3rem;
    color: white;
}

.drama-content {
    padding: 1.5rem;
}

.drama-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.drama-content p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.drama-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #888;
}

/* Create Section */
.create-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.create-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.create-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.create-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.create-features {
    list-style: none;
    margin-bottom: 2rem;
}

.create-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.create-features i {
    color: #FFA700;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Editor Mockup */
.editor-mockup {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
}

.editor-header {
    background: #000000;
    padding: 1rem;
    color: white;
}

.editor-tab {
    background: #FFA700;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

.editor-content {
    padding: 2rem;
}

.editor-toolbar {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.editor-toolbar i {
    font-size: 1.5rem;
    color: #FFA700;
    cursor: pointer;
    transition: color 0.3s ease;
}

.editor-toolbar i:hover {
    color: #FFA700;
}

.preview-placeholder {
    background: #2a2a2a;
    border: 2px dashed #555;
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    color: #888;
}

.preview-placeholder i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Community Section */
.community-section {
    padding: 80px 0;
    background: #0a0a0a;
}

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

.community-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.community-card:hover {
    transform: translateY(-5px);
}

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

.community-icon i {
    font-size: 2rem;
    color: white;
}

.community-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.community-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
    border-top: 2px solid #FFA700;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #FFA700;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.footer-section h4 {
    color: #FFA700;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-section p {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 400px;
}

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

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

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

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

.footer-section ul li a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #FFA700;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 167, 0, 0.1);
    border: 2px solid #FFA700;
    border-radius: 50%;
    color: #FFA700;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #FFA700;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 167, 0, 0.4);
}

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

.footer-bottom p {
    color: #FFA700;
    font-size: 14px;
    margin: 0;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-section p {
        max-width: 100%;
    }
    
    .social-links {
        justify-content: center;
        gap: 15px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .create-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features-grid,
    .drama-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .create-text h2 {
        font-size: 2rem;
    }
}

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

.hero-content,
.feature-card,
.drama-card,
.community-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Privacy Policy Section */
.privacy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.privacy-intro h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFA700;
}

.privacy-intro h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    color: #ffffff;
}

.privacy-intro p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-intro ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-intro ul li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-details h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #FFA700;
}

.privacy-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: #ffffff;
}

.privacy-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    color: #ffffff;
}

.privacy-details p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-details ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-details ul li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-details strong {
    color: #FFA700;
    font-weight: 600;
}

/* Responsive design for privacy section */
@media (max-width: 768px) {
    .privacy-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .privacy-intro h3,
    .privacy-details h3 {
        font-size: 1.5rem;
    }
    
    .privacy-intro h4,
    .privacy-details h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 20px 15px;
    }
    
    .privacy-intro h3,
    .privacy-details h3 {
        font-size: 1.3rem;
    }
    
    .privacy-intro h4,
    .privacy-details h4 {
        font-size: 1.1rem;
    }
} 

a {
    color: orange;
    text-decoration: underline;
    transition: color 0.2s;
}

a:hover, a:focus {
    color: darkorange;
    text-decoration: underline;
} 

.faq-accordion {
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.faq-item {
    border-bottom: 1px solid #222;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #FFA700;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    padding: 1.2rem 0;
    cursor: pointer;
    transition: color 0.2s;
    position: relative;
}
.faq-question.active,
.faq-question:hover {
    color: #fff;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #181818;
    color: #ccc;
    transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1);
    padding: 0 0.5rem;
}
.faq-answer p {
    margin: 0.5rem 0 1.2rem 0;
    font-size: 1rem;
    color: #ccc;
}
.faq-question::after {
    content: '\25BC';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s;
    font-size: 1rem;
    color: #FFA700;
}
.faq-question.active::after {
    transform: translateY(-50%) rotate(180deg);
    color: #fff;
} 