.hidden {
    display: none !important;
}

/* Static Pages Typography */
.static-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.static-content h1, 
.static-content h2, 
.static-content h3 {
    font-family: "Sora", "Comfortaa", sans-serif;
    color: #fff;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 20px;
}

.static-content h1 { font-size: 32px; }
.static-content h2 { font-size: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.static-content h3 { font-size: 20px; color: #00c7d2; }

.static-content p, 
.static-content li {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #a3b4cb;
    margin-bottom: 15px;
}

.static-content ul, 
.static-content ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.static-content ul { list-style-type: disc; }
.static-content ol { list-style-type: decimal; }

.static-content a {
    color: #00c7d2;
    text-decoration: underline;
}

.static-content a:hover {
    opacity: 0.7;
}

.static-content strong {
    color: #fff;
    font-weight: 600;
}

.static-content table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    border: 1px solid rgba(163, 180, 203, 0.3);
}

.static-content th, 
.static-content td {
    padding: 12px;
    border: 1px solid rgba(163, 180, 203, 0.3);
    text-align: left;
}

.static-content th {
    background: rgba(0, 199, 210, 0.1);
    color: #fff;
}

/* Cookie Banner - Consistent with App */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    max-width: 450px;
    width: calc(100% - 48px);
    background: #031c33;
    border: 1px solid #a3b4cb;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    font-family: "Inter", sans-serif;
}

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

.cookie-banner .title {
    font-size: 24px;
    margin-bottom: 15px;
}

.cookie-banner .desc {
    font-size: 14px;
    color: #a3b4cb;
    margin-bottom: 25px;
    line-height: 1.5;
}

.cookie-banner .buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-banner .button-row {
    display: flex;
    gap: 12px;
}

.cookie-banner .button {
    justify-content: center;
    width: 100%;
    padding-left: 10px;
}

/* Specific overrides for banner buttons if needed to look like others */
.cookie-banner .button-outline {
    background: transparent !important;
    border: 1px solid #00c7d2 !important;
    color: #00c7d2 !important;
}

.cookie-banner .button-outline:hover {
    background: #00c7d2 !important;
    color: #031c33 !important;
}

@media (max-width: 600px) {
    .cookie-banner {
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: none;
        border-radius: 30px 30px 0 0;
        padding: 20px;
    }
}

.cookie-banner .button-secondary {
    background: #EE7F38 !important;
}

.cookie-banner .button-secondary:hover {
    background: #fff !important;
    color: #031c33 !important;
}

.cookie-banner a {
    color: #00c7d2;
    text-decoration: underline;
}

/* Manage Cookies View Styles */
.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
}

/* Scrollbar for options if needed */
.cookie-options::-webkit-scrollbar {
    width: 4px;
}
.cookie-options::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}
.cookie-options::-webkit-scrollbar-thumb {
    background: #00c7d2;
    border-radius: 10px;
}

.cookie-option {
    border-bottom: 1px solid rgba(163, 180, 203, 0.1);
    padding-bottom: 12px;
}

.cookie-option:last-child {
    border-bottom: 0;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.option-name {
    font-family: "Sora", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
}

.option-status {
    font-size: 12px;
    color: #00c7d2;
    font-weight: 600;
    text-transform: uppercase;
}

.option-desc {
    font-size: 12px;
    color: #a3b4cb;
    line-height: 1.4;
}

.cursor-pointer {
    cursor: pointer;
}

/* Premium Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.1);
    transition: .4s;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #00c7d2;
    border-color: #00c7d2;
}

input:focus + .slider {
    box-shadow: 0 0 1px #00c7d2;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

