
/* Omegle.World - Production Style 2025 */

:root {
    --primary-blue: #0070f3;
    --acid-yellow: #dfff00;
    --pure-black: #000000;
    --pure-white: #ffffff;
    --gray-bg: #f8f9fa;
    --gray-border: #e0e0e0;
    --neo-shadow: 8px 8px 0px 0px #000;
    --neo-shadow-sm: 4px 4px 0px 0px #000;
    --font-heading: 'Archivo', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--pure-white);
    color: var(--pure-black);
    overflow-x: hidden;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid-bg {
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Header & Marquee */
.marquee-bar {
    background: var(--primary-blue);
    color: var(--pure-white);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 4px solid var(--pure-black);
    position: relative;
    z-index: 1001;
}

.marquee-content {
    display: inline-block;
    animation: marquee-scroll 40s linear infinite;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    height: 80px;
    border-bottom: 4px solid var(--pure-black);
    z-index: 1000;
}

.nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    background: var(--acid-yellow);
    padding: 6px;
    border: 3px solid var(--pure-black);
    box-shadow: var(--neo-shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    text-decoration: none;
    color: var(--pure-black);
    font-weight: 700;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-item:hover {
    color: var(--primary-blue);
}

.btn-live {
    background: var(--acid-yellow);
    color: var(--pure-black);
    padding: 10px 20px;
    border: 3px solid var(--pure-black);
    box-shadow: var(--neo-shadow-sm);
    text-decoration: none;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.1s;
}

.btn-live:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px 0px #000;
}

.pulse {
    width: 10px;
    height: 10px;
    background: #ff0033;
    border-radius: 50%;
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(0.8); opacity: 1; }
}

/* Hero Section - Reverted to Split Layout */
.hero {
    padding: 80px 0;
    border-bottom: 4px solid var(--pure-black);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.badge-black {
    background: var(--pure-black);
    color: var(--acid-yellow);
    padding: 6px 14px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 13px;
}

.badge-white {
    background: var(--pure-white);
    border: 3px solid var(--pure-black);
    padding: 6px 14px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 13px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 0.95;
    margin-bottom: 24px;
    letter-spacing: -3px;
}

.outline {
    -webkit-text-stroke: 2px var(--pure-black);
    color: transparent;
}

.hero-desc {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 45px;
    max-width: 600px;
    font-weight: 500;
    line-height: 1.4;
}

.interaction-card {
    background: var(--pure-white);
    border: 4px solid var(--pure-black);
    padding: 40px;
    box-shadow: var(--neo-shadow);
    width: 100%;
}

.agreement-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    cursor: pointer;
    text-align: left;
}

.checkbox-container {
    padding-top: 4px;
}

.checkbox-box {
    width: 32px;
    height: 32px;
    border: 4px solid var(--pure-black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.checkbox-box.checked {
    background: var(--acid-yellow);
}

.agreement-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.agreement-text p {
    font-size: 0.9rem;
    opacity: 0.6;
    font-family: var(--font-mono);
}

.btn-primary {
    width: 100%;
    background: var(--pure-black);
    color: var(--pure-white);
    border: none;
    padding: 24px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-primary:hover {
    background: var(--primary-blue);
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0px 0px #000;
}

/* Hero Visual - Card Stack Animation Styles */
.hero-visual {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-stack {
    position: relative;
    width: 320px;
    aspect-ratio: 3/4;
    perspective: 1000px;
}

.card {
    position: absolute;
    inset: 0;
    border: 4px solid var(--pure-black);
    border-radius: 12px;
    overflow: hidden;
    background: #222;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-main {
    z-index: 5;
    transform: rotate(-2deg);
    box-shadow: var(--neo-shadow-sm);
}

.card-back {
    z-index: 1;
    transform: translate(15px, 15px) rotate(3deg);
    opacity: 0.4;
    filter: grayscale(1);
}

/* Card Animation Classes */
.swipe-out {
    transform: translate(200%, -20%) rotate(25deg) !important;
    opacity: 0 !important;
}

.swipe-in {
    animation: swipe-in-anim 0.6s forwards cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes swipe-in-anim {
    from { transform: translate(-20%, 10%) rotate(-10deg); opacity: 0; }
    to { transform: rotate(-2deg); opacity: 1; }
}

.profile-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--acid-yellow);
    border: 3px solid var(--pure-black);
    padding: 8px 16px;
    font-family: var(--font-mono);
    font-weight: 800;
    box-shadow: 4px 4px 0px 0px #000;
    white-space: nowrap;
    z-index: 10;
}

.swipe-hint {
    margin-top: 30px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.5;
    text-transform: uppercase;
}

/* Chat Section */
.chat-section {
    background: var(--pure-black);
    border-bottom: 4px solid var(--pure-black);
}

.iframe-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
}

.main-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.iframe-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(20px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.lock-card {
    background: var(--acid-yellow);
    border: 6px solid var(--pure-black);
    padding: 60px;
    max-width: 500px;
    text-align: center;
    box-shadow: var(--neo-shadow);
}

.lock-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.lock-card h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.lock-card p {
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* About/SEO Section */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 40px;
    line-height: 1;
}

.text-center { text-align: center; }
.white { color: var(--pure-white); }

.large-p {
    font-size: 1.4rem;
    font-weight: 700;
    border-left: 8px solid var(--primary-blue);
    padding-left: 32px;
    margin-bottom: 40px;
}

.content-rich-text p {
    margin-bottom: 24px;
    font-size: 1.15rem;
    color: #333;
    line-height: 1.6;
}

.content-rich-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin: 48px 0 24px;
}

.info-blocks {
    display: grid;
    gap: 32px;
    margin-bottom: 40px;
}

.info-block h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.comparison-card {
    border: 4px solid var(--pure-black);
    padding: 32px;
    background: var(--pure-white);
    box-shadow: var(--neo-shadow);
}

.comparison-table .table-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    font-weight: 700;
}

.table-head {
    border-bottom: 3px solid var(--pure-black) !important;
    text-transform: uppercase;
    font-family: var(--font-mono);
    font-size: 12px;
}

.check { color: var(--primary-blue); font-size: 20px; }

.status-card {
    margin-top: 40px;
    background: var(--acid-yellow);
    border: 4px solid var(--pure-black);
    padding: 32px;
    box-shadow: var(--neo-shadow);
    transform: rotate(2deg);
}

.status-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-family: var(--font-mono);
    font-weight: 700;
    border-bottom: 2px solid rgba(0,0,0,0.1);
    padding-bottom: 8px;
}

/* Safety Tips */
.safety-section {
    background: var(--pure-black);
    padding: 100px 0;
    border-top: 4px solid var(--pure-black);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tip-card {
    background: var(--pure-white);
    border: 4px solid var(--pure-black);
    padding: 48px;
    position: relative;
    box-shadow: 10px 10px 0px 0px var(--primary-blue);
}

.tip-index {
    position: absolute;
    top: -20px;
    left: 20px;
    background: var(--acid-yellow);
    padding: 4px 12px;
    border: 3px solid var(--pure-black);
    font-family: var(--font-mono);
    font-weight: 900;
    font-size: 20px;
}

.faq-section {
    padding: 100px 0;
    background: var(--gray-bg);
}

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

.faq-card {
    background: var(--pure-white);
    border: 4px solid var(--pure-black);
    margin-bottom: 20px;
}

.faq-card summary {
    padding: 24px 32px;
    font-weight: 800;
    font-size: 1.3rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
}

.faq-content {
    padding: 0 32px 32px;
    border-top: 2px solid #eee;
    padding-top: 24px;
}

/* Footer */
footer {
    background: var(--pure-black);
    color: var(--pure-white);
    padding: 80px 0 0;
    border-top: 12px solid var(--acid-yellow);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 100px;
    padding-bottom: 80px;
}

.footer-column h4 {
    text-transform: uppercase;
    font-family: var(--font-mono);
    color: var(--acid-yellow);
    margin-bottom: 24px;
    font-size: 14px;
}

.footer-column a {
    display: block;
    color: var(--pure-white);
    text-decoration: none;
    margin-bottom: 16px;
    opacity: 0.7;
    transition: 0.2s;
}

.footer-column a:hover { opacity: 1; }

.footer-seo-bar {
    background: rgba(255,255,255,0.05);
    padding: 30px 0;
    text-align: center;
}

.footer-seo-bar p {
    font-family: var(--font-mono);
    font-size: 10px;
    opacity: 0.2;
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-container, .about-grid, .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content { text-align: center; }
    .hero-badges, .nav-links, .agreement-row { justify-content: center; }
    .hero-desc, .footer-info p { max-width: 100%; margin-left: auto; margin-right: auto; }
    .nav-links a:not(.btn-live) { display: none; }
    .hero-visual { margin-top: 60px; }
}

@media (max-width: 600px) {
    .hero { padding: 40px 0; }
    .hero-title { font-size: 3rem; }
    .interaction-card { padding: 24px; }
    .card-stack { width: 280px; }
}

.hidden { display: none !important; }

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

.shake {
    animation: shake 0.3s ease-in-out;
}
