/* Base Styles and Variables */
:root {
    --primary: #FF9500;
    --primary-light: #FFD700;
    --primary-dark: #FF5E3A;
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --bg-light: #2A2A2A;
    --text-light: #FFFFFF;
    --text-muted: #BBBBBB;
    --gradient: linear-gradient(135deg, var(--primary), var(--primary-light));
    --radius: 10px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 8px 25px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.8em;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.3rem;
    color: var(--text-light);
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img, svg {
    max-width: 100%;
    height: auto;
}

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

section {
    padding: 5rem 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}

.btn.primary {
    background: var(--gradient);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.3);
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.4);
}

.btn.secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn.secondary:hover {
    background: rgba(255, 149, 0, 0.1);
    transform: translateY(-3px);
}

.btn.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-svg {
    height: 40px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav ul li a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 149, 0, 0.15), transparent 60%);
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    flex: 1;
    z-index: 2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Video Showcase Section */
.video-showcase {
    background-color: var(--bg-light);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.video-showcase::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(255, 149, 0, 0.1), transparent 60%);
    pointer-events: none;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.video-preview {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.video-preview svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-light);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.video-card h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.1rem;
}

.stats {
    display: flex;
    gap: 10px;
    padding: 0 1rem 1rem;
}

.stats span {
    background: var(--bg-light);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Technology Section */
.technology {
    background-color: var(--bg-dark);
    padding: 6rem 0;
}

.technology .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.tech-info {
    flex: 1;
}

.tech-features {
    margin-top: 2rem;
}

.tech-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.icon {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    margin-bottom: 0.5rem;
}

.feature-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.tech-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 400px;
}

/* Create Section */
.create-section {
    background-color: var(--bg-light);
    padding: 5rem 0;
    text-align: center;
}

.create-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 3rem 0;
    gap: 1rem;
}

.step {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2rem;
    flex: 1;
    min-width: 200px;
    position: relative;
    box-shadow: var(--shadow);
    text-align: center;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--bg-dark);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step h3 {
    margin-top: 0.5rem;
}

.step-arrow {
    width: 50px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Benefits Section */
.benefits {
    background-color: var(--bg-dark);
    padding: 5rem 0;
}

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

.benefit-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(255, 94, 58, 0.15), rgba(255, 215, 0, 0.15));
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--bg-card);
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo p {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.link-group h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient);
}

.link-group ul li {
    margin-bottom: 0.8rem;
}

.link-group ul li a {
    color: var(--text-muted);
    transition: var(--transition);
}

.link-group ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-disclaimer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-text, .hero-visual {
        width: 100%;
        max-width: 100%;
    }
    
    .technology .container {
        flex-direction: column;
    }
    
    .tech-info, .tech-visual {
        width: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        position: fixed;
        flex-direction: column;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-card);
        padding: 80px 40px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    nav ul.active {
        right: 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .create-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}
