* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            min-height: 100vh;
            background-color: #050505;
            font-family: -apple-system, system-ui, sans-serif;
            color: #ffffff;
        }

        /* Modal Overlay - blocks everything */
        .cookie-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            backdrop-filter: blur(4px);
            pointer-events: auto;
        }

        .cookie-overlay.hidden {
            display: none !important;
            pointer-events: none;
        }

        /* Block all interaction when modal is visible */
        body.cookie-active {
            overflow: hidden;
        }

        body.cookie-active > *:not(.cookie-overlay):not(.confirmation-overlay) {
            pointer-events: none;
            opacity: 0.5;
        }

        .cookie-card {
            background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
            border: 1px solid #444;
            border-radius: 12px;
            padding: 30px;
            max-width: 450px;
            width: 90%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
            animation: slideUp 0.3s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cookie-card .title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cookie-card .description {
            font-size: 14px;
            color: #ccc;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .cookie-card .description a {
            color: #66b3ff;
            text-decoration: none;
            border-bottom: 1px solid #66b3ff;
            transition: color 0.2s;
        }

        .cookie-card .description a:hover {
            color: #99ccff;
        }

        .actions {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .actions button {
            flex: 1;
            padding: 10px 16px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .actions .pref {
            background-color: transparent;
            border: 1.5px solid #666;
            color: #ccc;
        }

        .actions .pref:hover {
            background-color: #333;
            border-color: #888;
            color: #fff;
        }

        .actions .accept {
            background: linear-gradient(135deg, #0066ff 0%, #0052cc 100%);
            color: white;
        }

        .actions .accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.4);
        }

        .actions .accept:active {
            transform: translateY(0);
        }

        /* Confirmation Modal */
        .confirmation-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
        }

        .confirmation-overlay.active {
            display: flex;
        }

        .confirmation-card {
            background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
            border: 1px solid #444;
            border-radius: 12px;
            padding: 35px;
            max-width: 420px;
            width: 90%;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
            animation: slideUp 0.3s ease-out;
        }

        .confirmation-card .title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #fff;
        }

        .confirmation-card .message {
            font-size: 14px;
            color: #bbb;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .confirmation-card .message strong {
            color: #e8e8e8;
        }

        .confirmation-actions {
            display: flex;
            gap: 12px;
        }

        .confirmation-actions button {
            flex: 1;
            padding: 12px 16px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .confirmation-actions .go-back {
            background-color: transparent;
            color: #ccc;
            border: 1.5px solid #666;
        }

        .confirmation-actions .go-back:hover {
            background-color: #333;
            border-color: #888;
            color: #fff;
        }

        .confirmation-actions .confirm-decline {
            background-color: #444;
            color: #fff;
            border: 1.5px solid #666;
        }

        .confirmation-actions .confirm-decline:hover {
            background-color: #555;
            border-color: #888;
        }

        /* Main content - hidden until cookie accepted */
        .main-content {
            display: none;
            z-index: 1;
            width: 100%;
            height: 100%;
            position: relative;
            opacity: 1;
            pointer-events: auto;
        }

        body.cookie-accepted .main-content {
            display: flex !important;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 1 !important;
            pointer-events: auto !important;
        }

        .title {
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .captcha-box {
            margin-bottom: 15px;
        }

        #status {
            font-size: 13px;
            margin-top: 15px;
            min-height: 20px;
            color: #888;
        }

        .error { 
            color: #ff4d4d; 
        }