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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
    position: relative;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Cookie Banner Base Styles */
.cookie-banner {
    position: fixed;
    width: 100%;
    padding: 15px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.banner-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.banner-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.banner-content p {
    margin-bottom: 15px;
    line-height: 1.4;
}

.banner-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Cookie Banner Variations */
.cookie-banner-standard {
    bottom: 0;
    background: rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.cookie-banner-aggressive {
    top: 0;
    background: rgba(255,87,34,0.9);
    color: white;
}

.cookie-banner-aggressive .banner-content {
    background: rgba(255,87,34,0.95);
    color: white;
}

.cookie-banner-cute {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    background: transparent;
    margin: 0 auto;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner-cute .banner-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    padding: 25px;
    width: 100%;
    border: none;
    position: relative;
    z-index: 1001;
}

.cookie-banner-minimal {
    bottom: 20px;
    right: 20px;
    width: auto;
    background: rgba(0,0,0,0.8);
}

.cookie-banner-minimal .banner-content {
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 15px;
}

.cookie-banner-detailed {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.5);
    width: 90%;
    max-width: 600px;
}

.cookie-banner-detailed .banner-content {
    background: white;
    max-width: none;
}

.cookie-banner-popup {
    top: 20px;
    right: 20px;
    width: auto;
    background: rgba(76,175,80,0.9);
}

.cookie-banner-popup .banner-content {
    background: rgba(76,175,80,0.95);
    color: white;
    padding: 15px;
}

/* Button Styles */
button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-accept-all {
    background: #4CAF50;
    color: white;
}

.btn-accept-all:hover {
    background: #45a049;
}

.btn-reject {
    background: #f44336;
    color: white;
}

.btn-reject:hover {
    background: #da190b;
}

.btn-customize {
    background: #2196F3;
    color: white;
}

.btn-customize:hover {
    background: #0b7dda;
}

.btn-accept-now {
    background: #FF5722;
    color: white;
    font-weight: bold;
    padding: 12px 24px;
}

.btn-maybe-later {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-yes-please {
    background: #E91E63;
    color: white;
    border-radius: 20px;
    padding: 10px 20px;
}

.btn-no-thanks {
    background: transparent;
    color: #333;
    border: 2px solid #E91E63;
    border-radius: 20px;
}

.btn-essential {
    background: #FF9800;
    color: white;
}

.btn-save-settings {
    background: #9C27B0;
    color: white;
}

.btn-accept-selected {
    background: #607D8B;
    color: white;
}

.btn-accept-mobile {
    background: #4CAF50;
    color: white;
}

/* Main Layout */
header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.consent-counter {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    color: white;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

/* Sections */
.hero-section, .content-section, .tracking-info {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-section h2, .content-section h2, .tracking-info h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2rem;
}

.hero-section p, .content-section p, .tracking-info p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

/* Tracking Buttons */
.tracking-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tracking-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.tracking-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.content-card {
    background: rgba(255,255,255,0.15);
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.content-card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

.content-card h3 {
    color: white;
    margin-bottom: 10px;
}

.content-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* Tracking Types */
.tracking-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tracking-type {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.tracking-type h4 {
    color: white;
    margin-bottom: 10px;
}

.tracking-type p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* Cookie Categories */
.cookie-categories {
    text-align: left;
    margin: 15px 0;
}

.cookie-categories label {
    display: block;
    margin: 8px 0;
    color: #333;
    cursor: pointer;
}

.cookie-categories input[type="checkbox"] {
    margin-right: 8px;
}

/* Footer */
footer {
    text-align: center;
    color: rgba(255,255,255,0.7);
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.cookie-banner-new {
    animation: fadeIn 0.5s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .tracking-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .tracking-types {
        grid-template-columns: 1fr;
    }
    
    .banner-buttons {
        flex-direction: column;
    }
    
    .cookie-banner-detailed {
        width: 95%;
    }
}
