/* Cookie Consent Modal */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(15, 15, 15, 0.97);
  border: 2px solid rgba(218, 165, 32, 0.5);
  border-radius: 15px;
  padding: 2.5rem;
  z-index: 2000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cookie-modal.active {
    display: block;
    opacity: 1;
}.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(218, 165, 32, 0.3);
}.modal-title {
    font-family: 'Cinzel', serif;
    color: #DAA520;
    font-size: 1.8rem;
    letter-spacing: 1px;
}.close-modal {
    background: transparent;
    border: none;
    color: #DAA520;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}.close-modal:hover {
    color: #FFD700;
    transform: scale(1.1);
}.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}.gdpr-table th, .gdpr-table td {
    border: 1px solid rgba(218, 165, 32, 0.3);
    padding: 0.8rem;
    text-align: left;
}.gdpr-table th {
    background: rgba(218, 165, 32, 0.1);
    color: #DAA520;
    font-family: 'Cinzel', serif;
}.gdpr-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}.modal-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}.modal-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}.modal-link {
    color: #DAA520;
    text-decoration: none;
    border-bottom: 1px dashed rgba(218, 165, 32, 0.5);
    transition: all 0.3s ease;
}.modal-link:hover {
    color: #FFD700;
    border-bottom: 1px solid #FFD700;
}.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1500;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}.modal-overlay.active {
    display: block;
    opacity: 1;
}.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(218, 165, 32, 0.2);
    border: 1px solid rgba(218, 165, 32, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}.cookie-settings-btn:hover {
    background: rgba(218, 165, 32, 0.3);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.3);
}.cookie-settings-btn i {
    color: #DAA520;
    font-size: 1.5rem;
}.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}.modal-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}.btn-accept {
    background: linear-gradient(45deg, #DAA520, #B8860B);
    color: #0a0a0a;
}.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
}.btn-save {
    background: transparent;
    color: #DAA520;
    border: 2px solid #DAA520;
}.btn-save:hover {
    background: #DAA520;
    color: #0a0a0a;
}/* Cookie Preference Controls */
.cookie-categories {
    margin: 2rem 0;
    border-top: 1px solid rgba(218, 165, 32, 0.2);
    padding-top: 1.5rem;
}.cookie-category {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 10px;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(218, 165, 32, 0.2);
    overflow: hidden;
}.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(218, 165, 32, 0.08);
    cursor: pointer;
}.category-title {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: #DAA520;
    font-size: 1.1rem;
}.category-description {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}.toggle-container {
    display: flex;
    align-items: center;
}.toggle-label {
    margin-right: 12px;
    color: #aaa;
    font-size: 0.9rem;
}.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 24px;
    border: 1px solid #555;
}.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 2px;
    background-color: #888;
    transition: .4s;
    border-radius: 50%;
}input:checked + .toggle-slider {
    background-color: #DAA520;
}input:checked + .toggle-slider:before {
    transform: translateX(25px);
    background-color: white;
}.category-details {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #aaa;
}.required {
    color: #DAA520;
    font-weight: bold;
    font-size: 0.8rem;
}.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 8px;
    background-color: #555;
}input:checked + .toggle-slider + .status-indicator {
    background-color: #DAA520;
    box-shadow: 0 0 8px rgba(218, 165, 32, 0.5);
}/* Cookie Consent Footer */
.cookie-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(218, 165, 32, 0.3);
    padding: 15px 20px;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}.cookie-footer.active {
    transform: translateY(0);
}.footer-message {
    flex: 1;
    min-width: 250px;
    margin-right: 20px;
    font-size: 0.9rem;
    color: #e8e8e8;
}.footer-message a {
    color: #DAA520;
    text-decoration: underline;
}.footer-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}.footer-btn {
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.9rem;
}.btn-essential {
    background: transparent;
    color: #e8e8e8;
    border: 1px solid rgba(218, 165, 32, 0.5);
}.btn-essential:hover {
    background: rgba(218, 165, 32, 0.1);
}.btn-allow {
    background: linear-gradient(45deg, #DAA520, #B8860B);
    color: #0a0a0a;
}.btn-allow:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.2);
}.btn-settings {
    background: transparent;
    color: #DAA520;
    border: 1px solid #DAA520;
}.btn-settings:hover {
    background: rgba(218, 165, 32, 0.1);
}/* Responsive Design for Cookie Elements */
@media
 (max-width: 768px) {
    .cookie-modal {
        padding: 1.5rem;
    }.modal-title {
    font-size: 1.5rem;
}

.gdpr-table {
    font-size: 0.8rem;
}

.modal-actions {
    flex-direction: column;
}

.modal-btn {
    width: 100%;
}

.cookie-footer {
    padding: 15px;
}

.footer-message {
    margin-right: 0;
    margin-bottom: 15px;
    min-width: 100%;
}

.footer-actions {
    width: 100%;
    justify-content: center;
}}@media
 (max-width: 480px) {
    .gdpr-table {
        display: block;
        overflow-x: auto;
    }.category-header {
    flex-direction: column;
    align-items: flex-start;
}

.toggle-container {
    margin-top: 10px;
    align-self: flex-end;
}

.footer-btn {
    padding: 8px 15px;
    font-size: 0.85rem;
}}/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}/* Confirmation Animation */
@keyframes
 fadeInOut {
    0% { opacity: 0; bottom: -50px; }
    20% { opacity: 1; bottom: 20px; }
    80% { opacity: 1; bottom: 20px; }
    100% { opacity: 0; bottom: -50px; }
}