/********************************************
   COOKIE BANNER BASE
********************************************/
#cookie-banner {
   position: fixed;
   top: 80vh;
   left: 0;
   width: 100%;
   background: linear-gradient(to bottom, rgba(33, 51, 79, 0.95), rgba(33, 51, 79, 0.95));
   color: white;
   z-index: 99999;
   padding: 20px 40px;
   display: flex;
   justify-content: center;
   opacity: 0;
   transition: opacity 0.5s ease-in-out;
}

/********************************************
   CONTENT CONTAINER
********************************************/
.cookie-content {
   max-width: 1200px;
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: 15px;
   position: relative;
   align-items: center;
}

/********************************************
   TEXT STYLING
********************************************/
.cookie-title {
   font-size: 1.3em;
   font-weight: 600;
   margin-bottom: 10px;
   color: white;
}

.cookie-text {
   font-size: 0.9em;
   text-align: center;
   max-width: 800px;
   margin: 0 auto;
   line-height: 1.5;
   color: white;
}

.cookie-text a {
   color: white;
   text-decoration: underline;
}

/********************************************
   BUTTON CONTAINER AND STYLING
********************************************/
.cookie-buttons {
   display: flex;
   gap: 20px;
   justify-content: center;
   margin: 15px 0;
}

.btn {
   padding: 12px 25px;
   border: none;
   border-radius: 5px;
   color: white;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   min-width: 150px;
   font-size: 1em;
}

.accept-btn {
   background: linear-gradient(to right, #2ecc71, #27ae60);
   border: 1px solid rgba(255, 255, 255, 0.2);
}

.decline-btn {
   background: linear-gradient(to right, #7f8c8d, #95a5a6);
   border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn:hover {
   transform: translateY(-2px);
   filter: brightness(1.1);
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/********************************************
   BOUNCING COOKIES ANIMATION
********************************************/
.bouncing-cookies {
   position: absolute;
   right: -50px;
   top: 0;
   display: flex;
   gap: 10px;
}

.cookie-image {
   width: 35px;
   height: 35px;
   position: relative;
   opacity: 0;
   animation: fadeIn 0.5s forwards;
}

.cookie-1 {
   animation: bounce1 2s infinite;
}

.cookie-2 {
   animation: bounce2 2.2s infinite;
}

.cookie-3 {
   animation: bounce3 1.8s infinite;
}

@keyframes bounce1 {
   0%, 100% { transform: translateY(0); }
   50% { transform: translateY(-20px); }
}

@keyframes bounce2 {
   0%, 100% { transform: translateY(0); }
   50% { transform: translateY(-30px); }
}

@keyframes bounce3 {
   0%, 100% { transform: translateY(0); }
   50% { transform: translateY(-15px); }
}

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

/********************************************
   VISIBILITY CLASSES
********************************************/
.hidden {
   display: none !important;
   opacity: 0;
}

.visible {
   display: block;
   opacity: 1;
}

/********************************************
   MOBILE RESPONSIVE DESIGN
********************************************/
@media (max-width: 768px) {
   #cookie-banner {
       top: auto;
       bottom: 0;
       padding: 15px;
   }
   
   .cookie-content {
       padding: 10px;
       gap: 10px;
   }
   
   .cookie-title {
       font-size: 1.1em;
   }
   
   .cookie-text {
       font-size: 0.85em;
   }
   
   .cookie-buttons {
       gap: 10px;
   }
   
   .btn {
       padding: 10px 15px;
       min-width: 120px;
       font-size: 0.9em;
   }
   
   .bouncing-cookies {
       right: 10px;
       top: -30px;
   }
   
   .cookie-image {
       width: 25px;
       height: 25px;
   }
}