/* Legal Pages Styles */

/* Legal Hero Section */
.legal-hero {
    background: linear-gradient(135deg, #070016 0%, #1a0a2e 50%, #2d1b3d 100%);
    padding: 160px 24px 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(157, 78, 221, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

.legal-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.legal-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #9ca3af;
}

.legal-breadcrumb a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-breadcrumb a:hover {
    color: #9d4edd;
}

.legal-breadcrumb span {
    color: #6b7280;
}

.legal-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.legal-title .text-purple {
    color: #9d4edd;
    background: linear-gradient(135deg, #9d4edd 0%, #c77dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-subtitle {
    font-size: 16px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Legal Content Section */
.legal-content {
    background-color: #070016;
    padding: 80px 24px;
    min-height: 60vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-main {
    animation: fadeInUp 0.8s ease-out;
}

.legal-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    padding-left: 24px;
}

.legal-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 28px;
    background: linear-gradient(180deg, #9d4edd 0%, #c77dff 100%);
    border-radius: 2px;
}

.legal-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 24px;
    margin-bottom: 16px;
}

.legal-text {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.85;
    margin-bottom: 16px;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-list li {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.85;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    transition: color 0.3s ease;
}

.legal-list li::before {
    content: '•';
    position: absolute;
    left: 12px;
    color: #9d4edd;
    font-size: 20px;
    font-weight: bold;
}

.legal-list li:hover {
    color: #ffffff;
    padding-left: 36px;
    transition: all 0.3s ease;
}

.legal-contact-info {
    margin-top: 24px;
    padding: 24px;
    background: rgba(157, 78, 221, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.legal-contact-info p {
    font-size: 16px;
    color: #d1d5db;
    margin: 8px 0;
    line-height: 1.6;
}

.legal-contact-info strong {
    color: #ffffff;
    font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .legal-hero {
        padding: 120px 24px 60px;
    }

    .legal-title {
        font-size: 36px;
    }

    .legal-content {
        padding: 60px 16px;
    }

    .legal-section {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .legal-section-title {
        font-size: 24px;
        padding-left: 20px;
    }

    .legal-section-title::before {
        width: 3px;
        height: 24px;
    }

    .legal-text {
        font-size: 15px;
    }

    .legal-list li {
        font-size: 15px;
        padding-left: 28px;
    }
}

@media (max-width: 480px) {
    .legal-title {
        font-size: 28px;
    }

    .legal-section-title {
        font-size: 20px;
    }

    .legal-subtitle {
        font-size: 18px;
    }

    .legal-contact-info {
        padding: 20px;
    }
}
