/* Base Styles */
:root {
    --primary-blue: #00c8ff;
    --dark-blue: #0a1a2a;
    --accent-blue: #1561ad;
    --teal: #1dbab4;
    --bright-green: #00ff00;
    --panel-bg: rgba(10, 26, 42, 0.9);  
            --primary: #b00098;
            --primary-light: #ecade4;
            --secondary: #330066;
            --accent: #ffcc00;
            --dark: #1a1a1a;
            --light: #ffffff;
            --success: #00b300;
            --info: #0066cc;
        }
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}

body {
background-color: #1a1a1a;
color: white;
}

/* Common Styles */
.info-bar {
display: flex;
background-color: #000033;
padding: 10px 20px;
border-top: 1px solid #0066cc;
border-bottom: 1px solid #0066cc;
font-size: 14px;
}

.info-label {
font-weight: bold;
margin-right: 10px;
}

.info-text {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

/* Button Styles */
.btn-masuk {
background-color: #00b300;
color: white;
border: none;
padding: 8px 15px;
border-radius: 3px;
cursor: pointer;
font-weight: bold;
text-decoration: none;
}
a {
text-decoration: none;
}
/* Full Width Banner Styles */
.full-width-banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-image: url('img/sliderbaru_1.webp');
    background-size: cover;
    background-position: center;
    margin-bottom: 2rem;
}

/* Create a gradient overlay for better text visibility */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(51, 0, 102, 0.8) 100%, rgba(176, 0, 152, 0.8) 100%);
    opacity: 0.7;
    z-index: 1;
}

/* Position the content in the center */
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

/* Style the banner text */
.banner-text {
    margin-bottom: 2rem;
}

.banner-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.banner-text p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

/* Style the buttons */
.banner-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeIn 1.5s ease-out;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: #ffcc00;
    color: #330066;
    border: 2px solid #ffcc00;
}

.btn-primary:hover {
    background-color: #ffdd33;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: #ffdd33;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: ffdd33;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .full-width-banner {
        height: 400px;
    }
    
    .banner-text h2 {
        font-size: 2.5rem;
    }
    
    .banner-text p {
        font-size: 1.2rem;
    }
    
    .banner-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .full-width-banner {
        height: 350px;
    }
    
    .banner-text h2 {
        font-size: 2rem;
    }
    
    .banner-text p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

.btn-daftar {
background-color: #0066cc;
color: white;
border: none;
padding: 8px 15px;
border-radius: 3px;
cursor: pointer;
font-weight: bold;
text-decoration: none;
}

/* Language Selector */
.language-selector {
display: flex;
align-items: center;
cursor: pointer;
}

.language-selector img {
height: 20px;
margin-right: 5px;
}

/* Desktop Header Styles */
.desktop-header {
display: none;
}

.top-header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #000;
padding: 10px 20px;
}

.logo img {
height: 40px;
}

.right-section {
display: flex;
flex-direction: column;
align-items: flex-end;
}

.top-links {
display: flex;
gap: 15px;
margin-bottom: 10px;
}

.top-links a {
color: white;
text-decoration: none;
font-size: 14px;
}

.login-form {
display: flex;
align-items: center;
gap: 5px;
}

.login-form input {
padding: 8px;
border-radius: 3px;
border: 1px solid #444;
}

.main-nav {
background-color: #330066;
padding: 0 20px;
}

.main-nav ul {
display: flex;
list-style: none;
overflow-x: auto;
}

.main-nav li {
white-space: nowrap;
}

.main-nav a {
display: block;
color: white;
text-decoration: none;
padding: 15px 20px;
font-weight: bold;
position: relative;
}

.main-nav a:hover {
background-color: #4d0099;
}

.promo-item {
position: relative;
padding-top: 25px !important;
}

.promo-tag {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
background-color: #ffcc00;
color: black;
font-size: 10px;
padding: 2px 5px;
border-radius: 3px;
}

/* Mobile Header Styles */
.mobile-header {
background-color: #000;
}

.mobile-top {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 15px;
height: 60px;
}

.menu-toggle, .mobile-login-toggle {
color: white;
font-size: 24px;
background: none;
border: none;
cursor: pointer;
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
}

.mobile-nav {
display: none;
background-color: #330066;
}

.mobile-nav.active {
display: block;
}

.mobile-nav ul {
list-style: none;
}

.mobile-nav li {
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a {
display: block;
color: white;
text-decoration: none;
padding: 15px;
font-size: 16px;
}

.mobile-nav .promo-item {
position: relative;
padding-right: 60px;
}

.mobile-nav .promo-tag {
left: auto;
right: 15px;
top: 50%;
transform: translateY(-50%);
}

.mobile-login {
display: none;
background-color: #222;
padding: 15px;
}

.mobile-login.active {
display: block;
}

.mobile-login input {
width: 100%;
padding: 12px;
margin-bottom: 10px;
border-radius: 4px;
border: 1px solid #444;
background-color: #333;
color: white;
}

.mobile-buttons {
display: flex;
gap: 10px;
margin-bottom: 15px;
}

.mobile-buttons button {
flex: 1;
padding: 12px;
}

.forgot-password {
display: block;
color: white;
text-decoration: none;
text-align: center;
margin: 10px 0;
font-size: 14px;
}

.mobile-links {
display: flex;
flex-direction: column;
gap: 12px;
margin: 15px 0;
}

.mobile-links a {
color: white;
text-decoration: none;
font-size: 14px;
}

/* Media Queries */
@media (min-width: 768px) {
.mobile-header {
    display: none;
}

.desktop-header {
    display: block;
}
}

@media (max-width: 767px) {
.info-bar {
    padding: 8px 15px;
}
}
:root {
        --primary: #b00098;
        --primary-light: #ecade4;
        --secondary: #330066;
        --accent: #ffcc00;
        --dark: #1a1a1a;
        --light: #ffffff;
        --success: #00b300;
        --info: #0066cc;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }
    
    body {
        background-color: #f8f9fa;
        color: #333;
        line-height: 1.6;
    }
    
    /* Header Styling */
    .site-header {
        background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
        color: var(--light);
        padding: 2rem 0;
        text-align: center;
        border-bottom: 5px solid var(--accent);
        position: relative;
        overflow: hidden;
    }
    
    .site-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'%3E%3C/path%3E%3C/svg%3E");
        z-index: 0;
    }
    
    .site-header h1 {
        font-size: 3rem;
        margin-bottom: 0.5rem;
        position: relative;
        z-index: 1;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .intro {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        margin: 2rem 0;
    }
    
    /* Tabs Styling */
    .tab {
        overflow: hidden;
        border-radius: 8px 8px 0 0;
        background: linear-gradient(to right, var(--secondary), var(--primary));
        display: flex;
        flex-wrap: wrap;
    }
    
    .tab button {
        background-color: transparent;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 1rem 1.5rem;
        transition: 0.3s;
        font-size: 1rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
        position: relative;
        overflow: hidden;
    }
    
    .tab button::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background-color: var(--accent);
        transition: width 0.3s;
    }
    
    .tab button:hover {
        color: white;
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .tab button:hover::before {
        width: 80%;
    }
    
    .tab button.active {
        color: white;
        background-color: rgba(255, 255, 255, 0.2);
    }
    
    .tab button.active::before {
        width: 80%;
    }
    
    .tabcontent {
        display: none;
        padding: 2rem;
        border: 1px solid #ddd;
        border-top: none;
        border-radius: 0 0 8px 8px;
        background-color: white;
        animation: fadeEffect 1s;
    }
    
    @keyframes fadeEffect {
        from {opacity: 0;}
        to {opacity: 1;}
    }
    
    /* Custom List Styling */
    .feature-list {
        list-style: none;
        margin: 1.5rem 0;
    }
    
    .feature-list li {
        position: relative;
        padding: 0.75rem 0 0.75rem 2.5rem;
        margin-bottom: 0.5rem;
        border-bottom: 1px dashed #eee;
    }
    
    .feature-list li:last-child {
        border-bottom: none;
    }
    
    .feature-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b00098'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% {
            transform: translateY(-50%) scale(1);
        }
        50% {
            transform: translateY(-50%) scale(1.1);
        }
        100% {
            transform: translateY(-50%) scale(1);
        }
    }
    
    /* Bonus List Styling */
    .bonus-list {
        list-style: none;
        margin: 1.5rem 0;
    }
    
    .bonus-list li {
        position: relative;
        padding: 1rem 1rem 1rem 3.5rem;
        margin-bottom: 1rem;
        background-color: #f9f9f9;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .bonus-list li:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .bonus-list li::before {
        content: '';
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        background-color: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
        background-size: 18px;
        background-position: center;
        background-repeat: no-repeat;
    }
    .btn-gradient-primary {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        color: white;
    }
    /* VIP List Styling */
    .vip-list {
        list-style: none;
        margin: 1.5rem 0;
        display: grid;
        grid-template-columns: repeat(3, auto);
        gap: 1rem;
    }
    
    .vip-list li {
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        border-radius: 8px;
        padding: 1.5rem;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s;
    }
    
    .vip-list li:hover {
        transform: translateY(-5px);
    }
    
    .vip-list li::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 40px;
        background-color: var(--accent);
        clip-path: polygon(0 0, 100% 0, 100% 100%);
    }
    
    .vip-list li h4 {
        color: var(--secondary);
        margin-bottom: 1rem;
        border-bottom: 2px solid var(--primary-light);
        padding-bottom: 0.5rem;
        font-size: 1.2rem;
    }
    
    /* Banner Styling */
    .banner {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        color: white;
        padding: 2rem;
        border-radius: 8px;
        margin: 2rem 0;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z'%3E%3C/path%3E%3C/svg%3E");
        opacity: 0.2;
    }
    
    .banner-content {
        position: relative;
        z-index: 1;
    }
    
    .banner h2 {
        margin-bottom: 1rem;
        font-size: 1.8rem;
    }
    
    .banner p {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
        max-width: 80%;
    }
    
    .btn {
        display: inline-block;
        background-color: var(--accent);
        color: var(--dark);
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: transform 0.3s, box-shadow 0.3s;
        border: none;
        cursor: pointer;
    }
    
    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    
    /* Payment Method Table */
    .payment-table {
        width: 100%;
        border-collapse: collapse;
        margin: 2rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
    }
    
    .payment-table thead {
        background-color: var(--secondary);
        color: white;
    }
    
    .payment-table th,
    .payment-table td {
        padding: 1rem;
        text-align: left;
        border-bottom: 1px solid #eee;
    }
    
    .payment-table tbody tr:nth-child(even) {
        background-color: #f9f9f9;
    }
    
    .payment-table tbody tr:hover {
        background-color: #f1f1f1;
    }
    
/* Footer Styles */
.site-footer {
position: relative;
background-color: #1a1a1a;
color: #fff;
font-family: 'Poppins', sans-serif;
margin-top: 4rem;
}

.footer-waves {
position: relative;
width: 100%;
height: 150px;
margin-bottom: -10px;
overflow: hidden;
}

.footer-waves svg {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: auto;
}

.footer-content {
background: linear-gradient(135deg, #330066 0%, #b00098 100%);
padding: 4rem 0 2rem;
position: relative;
}

.footer-content::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z'%3E%3C/path%3E%3C/svg%3E");
opacity: 0.2;
}

.footer-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
position: relative;
z-index: 1;
}

/* Footer Columns */
.footer-column {
display: flex;
flex-direction: column;
}

.footer-about {
grid-column: span 2;
}

.footer-logo {
margin-bottom: 1.5rem;
}

.footer-logo img {
max-height: 60px;
filter: brightness(0) invert(1);
}

.footer-description {
margin-bottom: 1.5rem;
font-size: 0.95rem;
line-height: 1.6;
opacity: 0.8;
}

.footer-social {
display: flex;
gap: 0.75rem;
}

.social-icon {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
color: white;
font-size: 1rem;
transition: all 0.3s ease;
}

.social-icon:hover {
background-color: var(--accent);
color: var(--dark);
transform: translateY(-3px);
}

/* Footer Headings */
.footer-heading {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 1.5rem;
position: relative;
padding-bottom: 0.75rem;
}

.footer-heading::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 50px;
height: 3px;
background: var(--accent);
border-radius: 3px;
}

/* Footer Links */
.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 0.75rem;
}

.footer-links a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: all 0.3s ease;
display: flex;
align-items: center;
}

.footer-links a i {
margin-right: 0.5rem;
font-size: 0.8rem;
transition: transform 0.3s ease;
}

.footer-links a:hover {
color: var(--accent);
padding-left: 5px;
}

.footer-links a:hover i {
transform: translateX(3px);
}

/* Contact Info */
.footer-contact {
list-style: none;
}

.footer-contact li {
display: flex;
margin-bottom: 1rem;
}

.footer-contact li i {
color: var(--accent);
margin-right: 1rem;
margin-top: 5px;
}

/* Newsletter */
.footer-newsletter {
grid-column: span 2;
}

.newsletter-form {
display: flex;
margin-bottom: 1.5rem;
}

.newsletter-form input {
flex: 1;
padding: 12px 15px;
border: none;
border-radius: 4px 0 0 4px;
background-color: rgba(255, 255, 255, 0.1);
color: white;
}

.newsletter-form input::placeholder {
color: rgba(255, 255, 255, 0.6);
}

.btn-subscribe {
padding: 0 20px;
background-color: var(--accent);
color: var(--dark);
border: none;
border-radius: 0 4px 4px 0;
cursor: pointer;
transition: all 0.3s ease;
}

.btn-subscribe:hover {
background-color: #ffdd33;
}

/* Payment Methods */
.payment-methods {
margin-top: 1.5rem;
}

.payment-methods h4 {
font-size: 1rem;
margin-bottom: 1rem;
opacity: 0.9;
}

.payment-icons {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.payment-icons img {
height: 30px;
background-color: white;
border-radius: 4px;
padding: 3px;
}

/* Responsible Gaming */
.responsible-gaming {
max-width: 1200px;
margin: 3rem auto 0;
padding: 2rem 1rem;
text-align: center;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.responsible-icons {
display: flex;
justify-content: center;
gap: 2rem;
margin-bottom: 1.5rem;
flex-wrap: wrap;
}

.responsible-gaming p {
max-width: 800px;
margin: 0 auto;
opacity: 0.7;
font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
background-color: rgba(0, 0, 0, 0.3);
padding: 1.5rem 0;
}

.footer-bottom .footer-container {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}

.footer-bottom p {
font-size: 0.9rem;
opacity: 0.7;
}

.footer-bottom-links {
display: flex;
gap: 1.5rem;
flex-wrap: wrap;
}

.footer-bottom-links a {
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
font-size: 0.9rem;
transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
color: var(--accent);
}

/* Responsive Design */
@media (max-width: 992px) {
.footer-about {
    grid-column: span 1;
}

.footer-newsletter {
    grid-column: span 1;
}
}

@media (max-width: 768px) {
.footer-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-waves {
    height: 100px;
}

.responsible-icons {
    gap: 1rem;
}

.footer-bottom .footer-container {
    flex-direction: column;
    text-align: center;
}

.footer-bottom-links {
    justify-content: center;
}
}

@media (max-width: 576px) {
.footer-container {
    grid-template-columns: 1fr;
}

.footer-social {
    justify-content: center;
}

.footer-heading {
    text-align: center;
}

.footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

.newsletter-form {
    flex-direction: column;
}

.newsletter-form input {
    border-radius: 4px;
    margin-bottom: 10px;
}

.btn-subscribe {
    border-radius: 4px;
    padding: 12px;
}
}
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .site-header h1 {
            font-size: 2rem;
        }
        
        .tab button {
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
        }
        
        .vip-list {
            grid-template-columns: 1fr;
        }
        
        .banner p {
            max-width: 100%;
        }
    }
    .side-panel {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    background-color: var(--panel-bg);
    border-radius: 10px 0 0 10px;
    box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.3);
    padding: 15px;
    z-index: 999;
    font-family: Arial, sans-serif;
}

/* Alternative Link Section */
.alt-link-section {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.alt-link-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background-color: var(--bright-green);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px var(--bright-green);
}

.link-text {
    color: white;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
}

.alt-link-url {
    display: block;
    color: var(--primary-blue);
    font-size: 13px;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.3s ease;
}

.alt-link-url:hover {
    color: white;
    text-decoration: underline;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background-color: var(--primary);
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button-text {
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .side-panel {
        position: static;
        width: 100%;
        transform: none;
        border-radius: 10px;
        margin-top: 15px;
    }
}