:root {
    --primary-color: #6a1b9a;
    --primary-light: #9c4dcc;
    --primary-dark: #38006b;
    --background-color: #f5f5f5;
    --text-color: #333333;
    --white: #ffffff;
    --gray-light: #e0e0e0;
    --gray: #9e9e9e;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--gray-light);
}

/* Banner Styles */
.banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    opacity: 0.9;
}

.banner .container {
    position: relative;
    z-index: 1;
}

.banner h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.banner p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.banner-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.banner-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.1),
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.1));
    background-size: 200% 200%;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    animation: wave 4s ease infinite;
    position: relative;
    overflow: hidden;
    min-width: 150px;
}

.banner-features .feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        rgba(255,255,255,0.1),
        rgba(255,255,255,0.2),
        rgba(255,255,255,0.1));
    background-size: 200% 200%;
    animation: wave 3s ease infinite;
    opacity: 0.5;
}

.banner-features .feature i {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.3rem;
    animation: float 3s ease-in-out infinite;
}

.banner-features .feature span {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Banner Features Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes wave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Game Features */
.game-features {
    list-style: none;
    margin-top: 1.5rem;
    text-align: left;
    padding: 0 1rem;
}

.game-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-color);
    transition: transform 0.3s ease;
    line-height: 1.2;
}

.game-features li:hover {
    transform: translateX(5px);
}

.game-features i {
    color: var(--primary-color);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.85rem;
    height: 0.85rem;
    margin-top: 0.1rem;
}

.game-features li:hover i {
    transform: scale(1.1);
}

/* FAQ Section */
.faq {
    background-color: var(--white);
    padding: 4rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--background-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: var(--gray-light);
}

.faq-question h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-question i.fa-chevron-down {
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.faq-item.active .faq-question i.fa-chevron-down {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    background-color: var(--background-color);
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

/* Bonus Icons */
.bonus-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2rem;
}

/* Card Grids */
.games-grid,
.payment-grid,
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card,
.payment-card,
.bonus-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.game-card:hover,
.payment-card:hover,
.bonus-card:hover {
    transform: translateY(-5px);
}

.game-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.payment-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.game-card h3,
.payment-card h3,
.bonus-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Withdrawal Section */
.withdrawal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }

    nav {
        display: none;
    }

    .logo img {
        height: 40px;
    }

    .banner {
        padding: 4rem 0;
    }

    .banner h2 {
        font-size: 2.2rem;
    }

    .banner p {
        font-size: 1.1rem;
    }

    .banner-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }

    .banner-features .feature {
        width: 100%;
        min-width: unset;
        padding: 0.8rem 1rem;
    }

    .banner-features .feature i {
        font-size: 1.3rem;
    }

    .banner-features .feature span {
        font-size: 0.85rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    section {
        padding: 2rem 0;
    }

    .games-grid,
    .payment-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Responsive Adjustments */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .banner h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
    }
}

/* Enhanced Button Styles */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 20px rgba(255, 71, 87, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff4757, #ff6b6b);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 71, 87, 0.5);
    letter-spacing: 2px;
}

.btn:hover::before {
    opacity: 1;
}

.btn:hover::after {
    transform: translateX(100%);
}

.btn span {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn:hover span {
    transform: scale(1.05);
}

.btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 15px rgba(255, 71, 87, 0.3);
}

/* Responsive Button */
@media (max-width: 768px) {
    .btn {
        padding: 0.9rem 2.5rem;
        font-size: 1rem;
    }
} 