      .video-container {
        position: relative;
        /*padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 300px;
        overflow: hidden;
        margin: 20px 0;
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        max-height: 320px;
      }
      
      .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 10px;
        max-height: 300px;
      }
      
      .cookie-btn {
        background: linear-gradient(45deg, #FF0000, #FF5252);
        color: white;
        border: none;
        padding: 15px 30px;
        border-radius: 25px;
        font-weight: bold;
        cursor: pointer;
        margin: 10px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255,0,0,0.3);
      }
      
      .cookie-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255,0,0,0.4);
      }
      
      .cookie-btn:active {
        transform: translateY(0);
      }
      
      .status-indicator {
        padding: 10px;
        border-radius: 5px;
        margin: 10px 0;
        font-weight: bold;
      }
      
      .status-loading {
        background: #FFF3CD;
        color: #856404;
        border-left: 4px solid #FFC107;
      }
      
      .status-success {
        background: #D4EDDA;
        color: #155724;
        border-left: 4px solid #28A745;
      }
      
      .status-error {
        background: #F8D7DA;
        color: #721C24;
        border-left: 4px solid #DC3545;
      }
      
      /*#cookieModal {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        z-index: 10000;
        max-width: 90%;
        max-height: 90%;
        overflow: auto;
      }
      
      .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.7);
        z-index: 9999;
      }*/