/* ============================================
   LEGAL NOTICE PAGE - ULTRA PREMIUM
   © 2026 Ömer Berat Keser
   ============================================ */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --accent: #818cf8;
    --blue: #3b82f6;
    --cyan: #22d3ee;
    --purple: #a855f7;
    --bg: #050508;
    --card: #0a0a0f;
    --input: #0f0f15;
    --border: rgba(99, 102, 241, 0.12);
    --glow: rgba(99, 102, 241, 0.4);
    --text: #ffffff;
    --text-dim: #a1a1aa;
    --text-muted: #71717a;
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}

/* BACKGROUND */
.bg-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.bg-base {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 10%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 90%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: orbFloat 30s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -200px;
    left: -100px;
    opacity: 0.1;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--purple);
    bottom: -100px;
    right: -100px;
    opacity: 0.08;
    animation-delay: -15s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -20px);
    }
}

.bg-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
}

.bg-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bg-scanline {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--cyan), var(--primary), transparent);
    animation: scanMove 8s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes scanMove {

    0%,
    100% {
        top: -10px;
    }

    50% {
        top: 100%;
    }
}

/* HEADER */
.legal-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.header-center {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px var(--glow);
}

.header-icon i {
    font-size: 1.4rem;
    color: white;
}

.icon-pulse {
    position: absolute;
    inset: -6px;
    border: 2px solid var(--primary);
    border-radius: 18px;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.header-text h1 {
    font-size: 1.3rem;
    font-weight: 700;
}

.header-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.header-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.1));
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.8rem;
    color: var(--primary);
}

.header-badge i {
    font-size: 0.9rem;
}

/* MAIN */
.legal-main {
    padding: 100px 2rem 4rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

/* SECTIONS */
.legal-section {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    animation: fadeIn 0.5s ease both;
}

.legal-section:nth-child(2) {
    animation-delay: 0.1s;
}

.legal-section:nth-child(3) {
    animation-delay: 0.2s;
}

.legal-section:nth-child(4) {
    animation-delay: 0.3s;
}

.legal-section:nth-child(5) {
    animation-delay: 0.4s;
}

.legal-section:nth-child(6) {
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(99, 102, 241, 0.05);
    border-bottom: 1px solid var(--border);
}

.section-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-icon.warning {
    background: linear-gradient(135deg, var(--warning), #fbbf24);
}

.section-icon.danger {
    background: linear-gradient(135deg, var(--error), #f87171);
}

.section-icon.odra {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.section-icon i {
    font-size: 1.2rem;
    color: white;
}

.section-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.section-header p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.section-content {
    padding: 1.5rem;
}

.section-content p {
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.section-content strong {
    color: var(--primary);
}

.section-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.25rem 0 0.75rem;
}

/* INFO CARD */
.info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-top: 1rem;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-card strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.info-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ALERT BOX */
.alert-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.alert-box i {
    font-size: 1.2rem;
    color: var(--warning);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.alert-box p {
    margin: 0;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.alert-box.danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.alert-box.danger i {
    color: var(--error);
}

.alert-box.danger strong {
    display: block;
    color: var(--error);
    margin-bottom: 0.3rem;
}

/* DATA LIST */
.data-list {
    list-style: none;
}

.data-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.data-list li:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.data-list li i {
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.data-list li span {
    color: var(--text-dim);
}

.data-list li strong {
    color: var(--text);
}

/* NOTICE BOX */
.notice-box {
    padding: 1rem;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    margin-top: 1rem;
}

.notice-box h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--success);
    margin-bottom: 0.5rem;
}

.notice-box p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* COPYRIGHT NOTICE */
.copyright-notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 1rem;
}

.notice-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--error), var(--purple));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notice-icon i {
    font-size: 1.5rem;
    color: white;
}

.notice-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.notice-text p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* PROTECTION GRID */
.protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.protection-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.protection-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.protection-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.protection-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.protection-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* ODRA BANNER */
.odra-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 14px;
    margin-bottom: 1rem;
}

.odra-logo {
    display: flex;
    flex-direction: column;
}

.odra-logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--blue);
}

.odra-logo small {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.odra-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--success);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px var(--success);
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ODRA FEATURES */
.odra-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.odra-features .feature {
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.odra-features .feature:hover {
    border-color: var(--blue);
    transform: translateX(5px);
}

.odra-features .feature i {
    font-size: 1.3rem;
    color: var(--blue);
    margin-bottom: 0.5rem;
    display: block;
}

.odra-features .feature h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.odra-features .feature p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* WARNING BOX */
.warning-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    margin-top: 1rem;
}

.warning-box i {
    font-size: 1.3rem;
    color: var(--error);
    flex-shrink: 0;
}

.warning-box p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.warning-box strong {
    color: var(--error);
}

/* RESPONSIBILITY LIST */
.responsibility-list {
    list-style: none;
}

.responsibility-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
}

.responsibility-list li:last-child {
    border-bottom: none;
}

.responsibility-list li i {
    color: var(--success);
}

/* CONTACT */
.contact-cards {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dim);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
    color: var(--text);
    transform: translateY(-3px);
}

.contact-card i {
    font-size: 1.3rem;
    color: var(--primary);
}

/* FOOTER */
.legal-footer {
    padding: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-badges i {
    color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .legal-header {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .header-badge {
        display: none;
    }

    .protection-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .legal-header {
        padding: 1rem;
    }

    .header-text h1 {
        font-size: 1.1rem;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
    }

    .section-icon {
        margin: 0 auto;
    }

    .protection-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        flex-direction: column;
    }
}
