/* Cookies Policy List Styling */
/* --- COOKIES POLICY PAGE STYLING --- */

.legal-page {
    background-color: #000; /* Pure Black Background */
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    margin: 0;
}

.legal-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 100px 25px;
    animation: fadeIn 0.8s ease-in-out;
}

/* Header Section */
.legal-header {
    text-align: left;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 40px;
    margin-bottom: 60px;
}

.v4-tag {
    font-size: 10px;
    letter-spacing: 4px;
    color: #666;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.legal-title {
    font-size: clamp(32px, 6vw, 54px);
    font-weight: 300;
    letter-spacing: 2px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

.legal-title .v4-italic {
    font-family: serif;
    font-style: italic;
    color: #888;
}

.last-updated {
    font-size: 11px;
    color: #444;
    margin-top: 15px;
    letter-spacing: 1px;
}

/* Content Blocks */
.legal-block {
    margin-bottom: 50px;
}

.legal-block h3 {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

/* Title ke aage ek choti line jo luxury feel degi */
.legal-block h3::before {
    content: "";
    width: 30px;
    height: 1px;
    background: #444;
    display: inline-block;
    margin-right: 15px;
}

.legal-block p {
    font-size: 15px;
    color: #999;
    padding-left: 45px; /* Aligned with title text */
    text-align: justify;
}

/* List Styling */
.legal-list {
    list-style: none;
    padding-left: 45px;
    margin-top: 20px;
}

.legal-list li {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.legal-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #555;
}

.legal-list strong {
    color: #fff;
    font-weight: 500;
}

/* Navigation Link */
.article-nav {
    padding: 40px;
}

.back-link {
    color: #666;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 2px;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.back-link:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .legal-container { padding: 60px 20px; }
    .legal-block p, .legal-list { padding-left: 0; }
    .legal-block h3::before { display: none; }
}




/* Cookie Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #111; /* Dark theme */
    border: 1px solid #222;
    padding: 20px 25px;
    z-index: 9999;
    max-width: 350px;
    display: none; /* Initial hide */
    animation: slideUp 0.6s ease-out forwards;
}

.cookie-content p {
    font-size: 11px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

.cookie-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 8px 20px;
    font-size: 10px;
    letter-spacing: 2px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.cookie-btn:hover {
    background: #888;
    color: #fff;
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
}