/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

/* Allow scrolling when form is shown */
body.form-visible {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
}

body.form-visible html {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    background-color: #000000;
}

/* Full Screen Video */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.8s ease;
}

/* Mobile video adjustments for full width visibility */
@media (max-width: 768px) and (orientation: portrait) {
    #bg-video {
        object-fit: cover;
        object-position: center;
        background: #000000;
    }
}

@media (max-width: 480px) and (orientation: portrait) {
    #bg-video {
        object-fit: cover;
        object-position: center;
        background: #000000;
    }
}

#bg-video.loaded {
    opacity: 1;
}

/* Video Loading Progress */
.video-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    opacity: 1;
    transition: opacity 0.8s ease;
}

.video-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    max-width: 400px;
    width: 90%;
    padding: 2rem;
}

.loading-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.8));
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

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

.loading-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.loading-percentage {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 400;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments for loading */
@media (max-width: 480px) {
    .loading-content {
        padding: 1.5rem;
    }
    
    .loading-text {
        font-size: 0.9rem;
    }
    
    .loading-percentage {
        font-size: 0.8rem;
    }
}

/* Video Overlay */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
    pointer-events: none;
}

/* Form Container */
.form-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 2rem;
    padding-bottom: 8rem; /* Add space for footer */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow-y: auto; /* Allow scrolling */
}

.form-container.show {
    opacity: 1;
    visibility: visible;
}

/* When form is tall, allow scrolling and adjust layout */
@media (max-height: 800px) {
    .form-container {
        align-items: flex-start;
        padding-top: 4rem;
        padding-bottom: 10rem;
    }
}

@media (max-height: 600px) {
    .form-container {
        align-items: flex-start;
        padding-top: 2rem;
        padding-bottom: 12rem;
    }
}

.form-content {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

/* Typography */
.title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Countdown Timer */
.countdown-container {
    margin-bottom: 2rem;
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    min-width: 60px;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-variant-numeric: tabular-nums;
}

.countdown-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Form Styles */
.signup-form {
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.email-input {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.spinner {
    width: 20px;
    height: 20px;
    color: #000000;
}

/* Form Messages */
.form-message {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-container {
        padding: 1rem;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .countdown-timer {
        gap: 0.75rem;
    }
    
    .countdown-item {
        min-width: 55px;
        padding: 0.6rem 0.4rem;
    }
    
    .countdown-number {
        font-size: 1.3rem;
    }
    
    .email-input,
    .submit-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .form-content {
        max-width: 320px;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 50px;
        padding: 0.5rem 0.3rem;
    }
    
    .countdown-number {
        font-size: 1.1rem;
    }
    
    .countdown-text {
        font-size: 0.65rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-content {
    animation: fadeInUp 1s ease-out;
}


/* Copyright Footer */
.copyright-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.copyright-footer.show {
    transform: translateY(0);
}

.copyright-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

/* Logo Container */
.logo-container {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.logo-container.show {
    opacity: 1;
    visibility: visible;
}

.tyga-logo {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Control Buttons */
.control-buttons {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 30;
    display: flex;
    gap: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.control-buttons.show {
    opacity: 1;
    visibility: visible;
}

.control-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: scale(1.05);
}

.control-btn:active {
    transform: scale(0.95);
}

.audio-icon,
.replay-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

/* Responsive adjustments for logo and control buttons */
@media (max-width: 768px) {
    .logo-container {
        top: 1.5rem;
        left: 1.5rem;
    }
    
    .tyga-logo {
        height: 44px;
    }
    
    .control-buttons {
        top: 1.5rem;
        right: 1.5rem;
        gap: 0.5rem;
    }
    
    .control-btn {
        width: 44px;
        height: 44px;
    }
    
    .audio-icon,
    .replay-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        top: 1rem;
        left: 1rem;
    }
    
    .tyga-logo {
        height: 40px;
    }
    
    .control-buttons {
        top: 1rem;
        right: 1rem;
        gap: 0.5rem;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
    
    .audio-icon,
    .replay-icon {
        width: 16px;
        height: 16px;
    }
}

/* Math CAPTCHA Styling */
.math-captcha {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
}

.captcha-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

#captcha-question {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.captcha-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.captcha-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.captcha-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.refresh-captcha {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
}

.refresh-captcha:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: scale(1.05);
}

.refresh-captcha:active {
    transform: scale(0.95);
}

.refresh-captcha svg {
    width: 16px;
    height: 16px;
}

/* Responsive adjustments for math CAPTCHA */
@media (max-width: 480px) {
    .math-captcha {
        padding: 0.75rem;
    }
    
    .captcha-label {
        font-size: 0.85rem;
    }
    
    #captcha-question {
        font-size: 1rem;
    }
    
    .captcha-input {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .refresh-captcha {
        width: 28px;
        height: 28px;
    }
    
    .refresh-captcha svg {
        width: 14px;
        height: 14px;
    }
}

/* Toaster Notifications */
.toaster-container {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.toaster {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 300px;
    max-width: 500px;
    pointer-events: auto;
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toaster.show {
    transform: translateY(0);
    opacity: 1;
}

.toaster.success {
    border-left: 4px solid #22c55e;
}

.toaster.error {
    border-left: 4px solid #ef4444;
}

.toaster.warning {
    border-left: 4px solid #f59e0b;
}

.toaster.info {
    border-left: 4px solid #3b82f6;
}

.toaster-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.toaster-icon.success {
    color: #22c55e;
}

.toaster-icon.error {
    color: #ef4444;
}

.toaster-icon.warning {
    color: #f59e0b;
}

.toaster-icon.info {
    color: #3b82f6;
}

.toaster-content {
    flex: 1;
}

.toaster-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.toaster-message {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
}

.toaster-close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.toaster-close:hover {
    color: #6b7280;
}

.toaster-close svg {
    width: 16px;
    height: 16px;
}

/* Responsive toaster adjustments */
@media (max-width: 768px) {
    .toaster-container {
        top: 1rem;
        left: 1rem;
        right: 1rem;
        transform: none;
    }
    
    .toaster {
        min-width: auto;
        max-width: none;
        width: 100%;
    }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent-text h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cookie-consent-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.cookie-consent-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-primary {
    background: #ffffff;
    color: #000000;
}

.cookie-btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn-tertiary {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-tertiary:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

/* Cookie Preferences Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    color: #333333;
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666666;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333333;
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.cookie-category h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.cookie-category p {
    margin: 0;
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.4;
}

/* Cookie Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

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

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: #2196F3;
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-slider {
    background-color: #4CAF50;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.privacy-link {
    color: #2196F3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #1976D2;
    text-decoration: underline;
}

/* Privacy Notice */
.privacy-notice {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #2196F3;
    z-index: 1000;
    color: #333333;
}

.privacy-notice-content {
    position: relative;
}

.privacy-notice h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.privacy-notice p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.privacy-notice a {
    color: #2196F3;
    text-decoration: none;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

.privacy-notice-close {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 1rem;
    color: #666666;
    transition: all 0.3s ease;
}

.privacy-notice-close:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #333333;
}

/* Responsive adjustments for privacy components */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .cookie-consent-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-modal {
        padding: 1rem;
    }
    
    .cookie-modal-content {
        max-height: 90vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1rem 1.5rem;
    }
    
    .privacy-notice {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 1rem;
    }
    
    .cookie-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
}
