﻿@font-face {
    font-family: "Noah";
    font-style: normal;
    font-weight: 400;
    src: url(../../font/noah-regular.woff2) format("woff2");
    font-display: swap;
}

:root {
    --primary-color: #c62dad;
    --background-color: #161616;
    --background-dark-color: #121212;
    --text-color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Çerez Onay Pop-up */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--background-color);
    border-radius: 12px;
    padding: 25px;
    max-width: 340px;
    z-index: 9999;
    animation: slideUp 0.5s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent.hidden {
    display: none;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.cookie-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reject {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-reject:hover {
    /* hover efekti kaldırıldı */
}

.btn-settings {
    background: linear-gradient(135deg, rgba(198, 45, 173, 0.1) 0%, rgba(198, 45, 173, 0.2) 100%);
    color: #fff;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}


.btn-accept {
    background: var(--primary-color);
    color: white;
}

.btn-accept:hover {
    /* hover efekti kaldırıldı */
}

/* Çerez Ayarları Modal */
.cookie-settings-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.cookie-settings-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.settings-content {
    background: var(--background-color);
    border-radius: 12px;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: scaleIn 0.3s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.settings-content h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.settings-description {
    color: var(--text-color);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-policy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.cookie-policy-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.cookie-option {
    margin-bottom: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-color);
    font-size: 14px;
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.cookie-option input[type="checkbox"]:disabled + span {
    opacity: 0.7;
}

.cookie-description {
    margin-top: 6px;
    margin-left: 28px;
    font-size: 12px;
    color: var(--text-color);
    line-height: 1.4;
    opacity: 0.8;
}

.settings-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 15px;
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cancel:hover {
    /* hover efekti kaldırıldı */
}

.btn-save {
    background: var(--primary-color);
    color: white;
}

.btn-save:hover {
    /* hover efekti kaldırıldı */
}

/* Responsive */
@media (max-width: 600px) {
    .cookie-consent {
        bottom: 15px;
        right: 45px;
        left: 45px;
        max-width: calc(100% - 70px);
        border-radius: 12px;
        padding: 15px;
        /* box-shadow kaldırıldı */
    }
    
    .cookie-content h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .cookie-content p {
        font-size: 12px;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .cookie-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 12px;
        flex: 1;
        min-width: 80px;
    }
    
    .settings-content {
        padding: 15px;
        max-height: 95vh;
        margin: 10px;
        width: calc(100% - 20px);
    }
    
    .settings-content h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .settings-description {
        font-size: 11px;
        padding: 10px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .cookie-option {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .cookie-option label {
        font-size: 13px;
    }
    
    .cookie-option input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }
    
    .cookie-description {
        font-size: 11px;
        margin-left: 24px;
        margin-top: 4px;
    }
    
    .settings-buttons {
        margin-top: 12px;
        gap: 8px;
    }
    
    .settings-buttons .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
} 