/* Modern Legal Pages Styling */
.legal-section {
    padding: 8rem 0 4rem 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    min-height: 100vh;
    position: relative;
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(204, 0, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.modern-legal-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(204, 0, 51, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
}

.modern-legal-title {
    font-size: 3.5rem;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.legal-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-style: italic;
}

.modern-card {
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.3));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #cc0033, #ff3366, #cc0033);
    animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(204, 0, 51, 0.2);
    border-color: rgba(204, 0, 51, 0.3);
}

.card-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: rgba(204, 0, 51, 0.7);
    opacity: 0.8;
}

.card-content {
    padding: 2.5rem;
}

.card-title {
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.info-grid, .data-grid {
    display: grid;
    gap: 1rem;
}

.info-item, .data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid rgba(204, 0, 51, 0.5);
}

.label, .data-label {
    color: #cccccc;
    font-weight: 500;
    flex: 1;
}

.value, .data-value {
    color: #ffffff;
    font-weight: 600;
    text-align: right;
    flex: 1;
}

.highlight {
    color: #cc0033 !important;
    text-shadow: 0 0 5px #cc0033;
}

.contact-info-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.address-block {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.address-line {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.address-line.country {
    color: #cc0033;
    font-weight: 600;
    margin-top: 1rem;
    text-shadow: 0 0 5px #cc0033;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(204, 0, 51, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    color: #cc0033;
    font-size: 1.2rem;
}

.contact-link, .modern-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-link:hover, .modern-link:hover {
    color: #cc0033;
    text-shadow: 0 0 5px #cc0033;
}

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

.credits-text {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.credits-brand {
    margin-top: 1rem;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #cc0033, #ff3366);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(204, 0, 51, 0.3);
}

.brand-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(204, 0, 51, 0.4);
    background: linear-gradient(45deg, #ff3366, #cc0033);
}

.legal-text-modern p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.protected-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.protection-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 8px;
    border-left: 3px solid #00cc33;
    color: #ffffff;
    font-weight: 500;
}

.protection-item i {
    color: #00cc33;
}

.warning-text {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.warning-text i {
    color: #ff9900;
    font-size: 1.3rem;
}

.modern-footer {
    margin-top: 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(204, 0, 51, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.footer-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.modern-back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #cc0033, #ff3366);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(204, 0, 51, 0.3);
}

.modern-back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(204, 0, 51, 0.4);
}

.modern-link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.modern-link-button:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

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

.legal-footer-modern p {
    color: #cccccc;
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.legal-footer-modern i {
    color: #cc0033;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-info-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .protected-content {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .modern-legal-title {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    .modern-legal-title {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .legal-hero {
        padding: 100px 0 60px 0;
    }
    
    .container {
        padding: 0 1rem;
    }
}