/*
 * aigeneratedpornvideo.pw - Main Stylesheet
 * A modern video-focused design with purple/violet color scheme
 */

/* Base Styles & Variables */
:root {
    --primary: #EE82EE;         /* Violet */
    --primary-dark: #9370DB;    /* Medium Purple */
    --primary-light: #DDA0DD;   /* Plum */
    --accent: #4B0082;          /* Indigo */
    --accent-dark: #2D004D;     /* Darker Indigo */
    --dark: #1A1A1A;            /* Almost Black */
    --light: #FFFFFF;           /* White */
    --gray: #888888;            /* Medium Gray */
    --light-gray: #F0F0F0;      /* Light Gray */
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --shadow: 0 5px 15px rgba(75, 0, 130, 0.3);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--light);
    background-color: var(--dark);
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(75, 0, 130, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(238, 130, 238, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

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

a:hover {
    color: var(--primary-light);
}

.highlight {
    color: var(--primary);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
}

.section-title {
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient);
    border-radius: 1.5px;
}

/* Header Styles */
header {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

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

.logo-icon {
    filter: drop-shadow(0 0 5px rgba(238, 130, 238, 0.5));
}

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

h1 .domain {
    color: var(--gray);
    font-weight: 300;
    font-size: 1rem;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

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

.nav-links a {
    color: var(--light);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    padding: 8px 20px;
    background: var(--gradient);
    color: var(--light) !important;
    border-radius: 30px;
    font-weight: 600 !important;
    box-shadow: var(--shadow);
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(75, 0, 130, 0.4);
}

.btn-nav::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: var(--light);
    border-radius: 1.5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.9), transparent);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.video-tag {
    display: inline-block;
    background: rgba(75, 0, 130, 0.7);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.video-tag span {
    color: var(--primary);
}

.hero h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-visual {
    flex: 1;
    max-width: 500px;
}

.video-camera-svg {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 10px 20px rgba(75, 0, 130, 0.4));
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-large {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient);
    color: var(--light);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(75, 0, 130, 0.5);
    color: var(--light);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(238, 130, 238, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(238, 130, 238, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(238, 130, 238, 0);
    }
}

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

.btn-secondary:hover {
    background: rgba(238, 130, 238, 0.1);
    transform: translateY(-3px);
    color: var(--primary-light);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: var(--gradient);
    color: var(--light);
    box-shadow: var(--shadow);
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(75, 0, 130, 0.5);
    color: var(--light);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: rgba(26, 26, 26, 0.7);
    position: relative;
}

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

.feature-card {
    background: rgba(40, 40, 40, 0.5);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-image: var(--gradient);
    border-image-slice: 1;
    background: rgba(40, 40, 40, 0.8);
    box-shadow: var(--shadow);
}

.feature-icon {
    margin: 0 auto 20px;
    filter: drop-shadow(0 5px 10px rgba(75, 0, 130, 0.5));
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

/* Technology Section */
.technology {
    padding: 100px 0;
    background-color: rgba(20, 20, 20, 0.9);
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    opacity: 0.4;
    min-width: 60px;
    text-align: center;
}

.step-content {
    flex: 1;
}

.step h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.9), rgba(45, 0, 77, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100%" height="100%" fill="none"/><path d="M0 50 L100 50 M50 0 L50 100" stroke="%23EE82EE" stroke-width="1" opacity="0.1"/></svg>');
    background-size: cover;
    text-align: center;
}

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

.cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
    background-color: var(--accent-dark);
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

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

.footer-logo {
    filter: drop-shadow(0 0 5px rgba(238, 130, 238, 0.5));
}

.footer-links h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--gray);
    transition: var(--transition);
}

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

.footer-legal {
    grid-column: 1 / -1;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--accent-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content, 
    .hero-visual {
        max-width: 100%;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .tech-steps {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .cta h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.3rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .section-title,
    .cta h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, 
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
}
