* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: radial-gradient(100% 51.53% at 48.47% 0, #004b4c 0, #002021 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Font Awesome Icon Styling */
.fas, .far, .fab {
    margin-right: 0.5rem;
}

h1 .fas, h2 .fas, h3 .fas {
    margin-right: 0.75rem;
    color: #f7d462;
}

li .fas {
    margin-right: 0.5rem;
    color: #f7d462;
}

a .fas {
    margin-right: 0.5rem;
}

/* Jackpot Heading */
.jackpot-heading {
    color: #f7d462;
    margin-bottom: 1rem;
}

/* Jackpot Text */
.jackpot-text {
    margin-top: 1rem;
    color: #fbe38c;
}

/* Center Aligned Lists */
.center-list {
    max-width: 600px;
    margin: 1.5rem auto;
    text-align: center;
}

/* Gold Links */
.gold-link {
    color: #f7d462;
    text-decoration: none;
}

.gold-link:hover {
    color: #fbe38c;
}

/* User Review Blockquote */
.user-review {
    background: rgba(0, 106, 78, 0.2);
    padding: 1.5rem;
    border-left: 4px solid #f7d462;
    margin: 2rem 0;
    font-style: italic;
}

.user-review small {
    color: #fbe38c;
}

/* Features Grid Variants */
.features-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* External Resources Links */
.external-resources {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.external-link {
    color: #f7d462;
    text-decoration: none;
}

.external-link:hover {
    color: #fbe38c;
}

/* Disclaimer Section */
.disclaimer {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 106, 78, 0.1);
    border-radius: 10px;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #fbe38c;
}

/* Bonus Text Small */
.bonus-text-small {
    font-size: 0.9rem;
    margin-top: 1rem;
}

section p {
    text-align: center;
}

/* Mobile List */
.mobile-list {
    max-width: 600px;
    margin: 1rem auto;
    text-align: center;
}

/* Left Aligned Lists */
.left-list {
    text-align: left;
    margin-top: 1rem;
}

.left-list-wide {
    text-align: left;
    max-width: 700px;
    margin: 1rem;
}

.left-list-centered {
    text-align: left;
    max-width: 600px;
    margin: 1rem;
}

.left-list-simple {
    text-align: left;
}

/* Form Styles */
.register-section {
    max-width: 600px;
    margin: 3rem auto;
}

.register-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.register-vip {
    margin-bottom: 2rem;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #f7d462;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #006a4e;
    border-radius: 5px;
    background: rgba(1, 43, 32, 0.8);
    color: #fff;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: #f7d462;
    box-shadow: 0 0 10px rgba(247, 212, 98, 0.3);
}

.form-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
}

.form-footer {
    text-align: center;
    margin-top: 2rem;
}

/* Center Div */
.center-div {
    text-align: left;
    max-width: 600px;
    margin: 1rem auto;
}

/* Header Styles */
.header {
    background: #006a4e;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo {
    color: #f7d462;
    font-size: 2.5rem;
    font-weight: bold;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Arial Black', sans-serif;
}

.logo img {
    height: 50px;
}

nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu li a.link-active {
    color: #f7d462;
    background: rgba(247, 212, 98, 0.1);
}

.nav-menu li a.link-active:hover {
    transform: none;
    cursor: default;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

.nav-menu li a:hover {
    color: #f7d462;
    background: rgba(247, 212, 98, 0.1);
    transform: translateY(-2px);
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(180deg, #fbe38c, #ebab51);
    color: #012b20;
    box-shadow: 0 4px 15px rgba(235, 171, 81, 0.4);
    border: 2px solid #f7d462;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 171, 81, 0.6);
    background: linear-gradient(180deg, #fbe38c, #f7d462);
}

.btn-secondary {
    background: linear-gradient(180deg, #fbe38c, #ebab51);
    color: #012b20;
    box-shadow: 0 4px 15px rgba(235, 171, 81, 0.4);
    border: 2px solid #f7d462;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 171, 81, 0.6);
    background: linear-gradient(180deg, #fbe38c, #f7d462);
}

/* Mobile Menu Toggle */
.mobile-header-buttons {
    display: none;
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #f7d462;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero {
    background: radial-gradient(100% 51.53% at 48.47% 0, #004b4c 0, #002021 100%);
    color: white;
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero Background Images for Different Pages */
.hero.index-hero {
    background-image: linear-gradient(rgba(0, 75, 76, 0.8), rgba(0, 32, 33, 0.8)), url('img/banner.webp');
}

.hero.slots-hero {
    background-image: linear-gradient(rgba(0, 75, 76, 0.8), rgba(0, 32, 33, 0.8)), url('img/1.webp');
}

.hero.crash-hero {
    background-image: linear-gradient(rgba(0, 75, 76, 0.8), rgba(0, 32, 33, 0.8)), url('img/2.webp');
}

.hero.betting-hero {
    background-image: linear-gradient(rgba(0, 75, 76, 0.8), rgba(0, 32, 33, 0.8)), url('img/3.webp');
}

.hero.live-casino-hero {
    background-image: linear-gradient(rgba(0, 75, 76, 0.8), rgba(0, 32, 33, 0.8)), url('img/4.webp');
}

.hero.app-hero {
    background-image: linear-gradient(rgba(0, 75, 76, 0.8), rgba(0, 32, 33, 0.8)), url('img/5.webp');
}

.hero.bonuses-hero {
    background-image: linear-gradient(rgba(0, 75, 76, 0.8), rgba(0, 32, 33, 0.8)), url('img/6.webp');
}

.hero.login-hero {
    background-image: linear-gradient(rgba(0, 75, 76, 0.8), rgba(0, 32, 33, 0.8)), url('img/7.webp');
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle fill="%23f7d462" cx="100" cy="100" r="20" opacity="0.3"/><circle fill="%23ebab51" cx="1100" cy="150" r="15" opacity="0.4"/><circle fill="%23fbe38c" cx="200" cy="500" r="25" opacity="0.2"/></svg>');
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    background: linear-gradient(180deg, #fbe38c, #ebab51);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Section Styles */
.section {
    background: rgba(0, 106, 78, 0.15);
    margin: 2rem 0;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(247, 212, 98, 0.2);
    backdrop-filter: blur(10px);
}

.section h2 {
    color: #f7d462;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section h3 {
    color: #fbe38c;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: rgba(1, 43, 32, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid #006a4e;
}

table th {
    background: linear-gradient(180deg, #006a4e, #012b20);
    color: #f7d462;
    padding: 1.2rem;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

table td {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(247, 212, 98, 0.2);
    color: #fff;
}

table tr:hover {
    background: rgba(247, 212, 98, 0.1);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

/* FAQ Accordion */
.faq-item {
    margin-bottom: 1rem;
    border: 2px solid #006a4e;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(1, 43, 32, 0.6);
}

.faq-question {
    background: linear-gradient(180deg, #006a4e, #012b20);
    padding: 1.2rem;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: #f7d462;
}

.faq-question:hover {
    background: linear-gradient(180deg, #007a5c, #013a2a);
    transform: translateX(5px);
}

.faq-answer {
    padding: 1.2rem;
    display: none;
    background: rgba(1, 43, 32, 0.8);
    color: #fff;
}

.faq-answer.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #f7d462;
}

.faq-toggle.rotate {
    transform: rotate(45deg);
}

/* VIP Block */
.vip-block {
    background: linear-gradient(135deg, #f7d462, #ebab51);
    color: #012b20;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(247, 212, 98, 0.4);
    border: 3px solid #fbe38c;
    position: relative;
    overflow: hidden;
}

.vip-block i {
    color: #012b20;
}

.vip-block .center-div {
text-align: center;
}

.vip-block::before {
    content: '♦';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 2rem;
    opacity: 0.3;
    color: #012b20;
}

.vip-block::after {
    content: '♦';
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.3;
    color: #012b20;
}

.vip-block h3 {
    color: #012b20;
    margin-bottom: 1rem;
    font-size: 2rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature-card {
    background: linear-gradient(135deg, rgba(0, 106, 78, 0.8), rgba(1, 43, 32, 0.9));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(247, 212, 98, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(247, 212, 98, 0.2), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(247, 212, 98, 0.3);
    border-color: #f7d462;
}

.feature-card h3 {
    color: #f7d462;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #012b20;
    color: white;
    padding: 2rem 0;
    text-align: center;
    border-top: 3px solid #006a4e;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.header-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;

}

.logo img {
    height: 30px;
}

.header-buttons{
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .header-buttons .btn {
        padding: .75rem 2rem !important;
        font-size: 1rem !important;
    }

    .header-buttons {
        gap: 1rem;
    }

    .logo img {
        height: 50px;   
    }
}

.payment-icon {
    background: linear-gradient(180deg, #fbe38c, #ebab51);
    color: #012b20;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.payment-icon:hover {
    transform: translateY(-3px);
}

.social-links {
    margin: 1rem 0;
}

.social-links a {
    color: #f7d462;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #fbe38c;
    transform: scale(1.2);
}

ul {
    list-style: none;
}

/* Jackpot Section */
.jackpot-section .container {
    background: radial-gradient(100% 51.53% at 48.47% 0, #004b4c 0, #002021 100%);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 3px solid #f7d462;
    border-radius: 25px;
}

.jackpot-amount {
    font-size: 3rem;
    color: #f7d462;
    font-weight: bold;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 3px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.mobile-header-buttons .btn i {
    margin-right: 0;
}

/* Responsive Design */
@media (max-width: 1240px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(1, 43, 32, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section {
        margin: 1rem 0;
        padding: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .features-grid-small {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .external-resources {
        flex-direction: column;
        gap: 1rem;
    }

    table {
        font-size: 0.9rem;
    }

    table th,
    table td {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .mobile-header-buttons .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    table {
        font-size: 0.8rem;
    }

    table th,
    table td {
        padding: 0.6rem;
    }

    .jackpot-amount {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes goldShimmer {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-gold {
    color: #f7d462;
    font-weight: bold;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.btn-general {
    margin-top: 30px;
}

/* Special Effects */
.glow {
    box-shadow: 0 0 20px rgba(247, 212, 98, 0.6);
}

.card-hover-effect:hover {
    transform: perspective(1000px) rotateX(10deg);
    transition: all 0.3s ease;
}

@media (max-width:360px) {
    .mobile-header-buttons {
        display: flex;
        gap: 0.5rem;
    }

    
    .mobile-header-buttons .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;

    }

    .header-buttons {
        display: none !important;
    }
}