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

:root {
    --header-bg: #3e2419;
    --primary-bg: #3b2219;
    --secondary-bg: #1a1108;
    --accent-color: #afd07c;
    --button-gradient-start: #afd07c;
    --button-gradient-end: #78b631;
    --text-light: #ffffff;
    --nav-hover: rgba(255, 255, 255, 0.1);
    --container-max-width: 1200px;
    --header-padding: 1rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--primary-bg);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.site-header {
    background-color: var(--header-bg);
    padding: var(--header-padding) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo {
    height: 65px;
    width: auto;
    display: block;
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    display: block;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--nav-hover);
    outline: none;
}

.cta-button {
    background: linear-gradient(180deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
    color: var(--text-light);
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    outline: none;
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-button span {
    display: block;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

main {
    min-height: 100vh;
}

.hero {
    min-height: 600px;
    background-image: url('/images/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #2a1d15;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-weight: 400;
}

.hero-cta {
    display: inline-block;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .header-content {
        position: relative;
    }
    
    .main-nav {
        position: absolute;
        top: calc(100% + var(--header-padding));
        left: 0;
        right: 0;
        background-color: var(--header-bg);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem;
        border-radius: 0;
        width: 100%;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .logo {
        height: 50px;
    }
    
    .hero {
        min-height: 500px;
        background-image: url('/images/m-bg.webp');
    }
    
    .hero h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .hero-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .logo {
        height: 45px;
    }
    
    .hero {
        min-height: 450px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-text {
        font-size: 0.95rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .nav-list {
        gap: 1.5rem;
    }
    
    .cta-button {
        padding: 0.65rem 1.75rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1.05rem;
    }
}

.info-section {
    padding: 4rem 0;
    background-color: #3b2219;
    color: #fff;
}

.info-content {
    margin-bottom: 3rem;
}

.casino-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.info-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.2s ease;
}

.info-row:last-child {
    border-bottom: none;
}

.info-row:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.info-label {
    width: 200px;
    padding: 1rem 1.5rem 1rem 0;
    font-weight: 600;
    color: #afd07c;
    vertical-align: top;
    font-size: 0.95rem;
}

.info-value {
    padding: 1rem 0;
    line-height: 1.6;
    vertical-align: top;
    color: #fff;
}

.info-description {
    padding: 2rem 0;
    margin-top: 1rem;
    border-top: 2px solid rgba(175, 208, 124, 0.3);
}

.info-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    color: #e8e8e8;
}

.info-image {
    width: 100%;
    margin: 0;
    text-align: center;
}

.info-image img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .info-section {
        padding: 3rem 0;
    }
    
    .info-row {
        display: block;
    }
    
    .info-label,
    .info-value {
        display: block;
        width: 100%;
    }
    
    .info-label {
        font-size: 0.9rem;
        padding: 0.75rem 0 0.5rem 0;
        margin-bottom: 0.25rem;
    }
    
    .info-value {
        padding: 0 0 0.75rem 0;
        font-size: 0.95rem;
    }
    
    .info-description {
        padding: 1.5rem 0;
    }
    
    .info-description p {
        font-size: 1rem;
    }
    
    .info-content {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 2rem 0;
    }
    
    .info-label {
        font-size: 0.85rem;
        padding: 0.6rem 0 0.4rem 0;
    }
    
    .info-value {
        font-size: 0.9rem;
        padding: 0 0 0.6rem 0;
    }
    
    .info-description {
        padding: 1rem 0;
    }
    
    .info-description p {
        font-size: 0.95rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .info-label {
        flex: 0 0 220px;
    }
}

.bonus-section {
    padding: 4rem 0;
    background-color: #2a1d15;
    color: #fff;
}

.bonus-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #afd07c;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.bonus-content {
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-final-section {
    margin-top: 3rem;
}

.bonus-final-right {
    text-align: center;
    margin-bottom: 2rem;
}

.bonus-final-right img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

@media (min-width: 769px) {
    .bonus-final-section {
        display: grid;
        grid-template-columns: 1fr 400px;
        gap: 4rem;
        align-items: center;
        margin-top: 4rem;
    }
    
    .bonus-final-left {
        order: 1;
    }
    
    .bonus-final-right {
        order: 2;
        margin-bottom: 0;
    }
}

.bonus-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 3rem;
    color: #e8e8e8;
}

@media (min-width: 769px) {
    .bonus-intro {
        text-align: left;
    }
}

.bonus-offers {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    display: grid;
    gap: 2rem;
}

.bonus-offer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #afd07c;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.bonus-offer:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.bonus-offer-title {
    display: block;
    font-size: 1.4rem;
    color: #afd07c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.bonus-offer p {
    line-height: 1.6;
    color: #e8e8e8;
    margin: 0;
}



.bonus-final-left {
    text-align: center;
}

@media (min-width: 769px) {
    .bonus-final-left {
        text-align: left;
    }
}

.bonus-final-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #e8e8e8;
}

.bonus-cta {
    display: inline-block;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .bonus-section {
        padding: 3rem 0;
    }
    
    .bonus-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .bonus-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .bonus-offers {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .bonus-offer {
        padding: 1.5rem;
    }
    
    .bonus-offer-title {
        font-size: 1.2rem;
    }
    
    .bonus-final-left p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bonus-section {
        padding: 2rem 0;
    }
    
    .bonus-section h2 {
        font-size: 1.75rem;
    }
    
    .bonus-intro {
        font-size: 1rem;
    }
    
    .bonus-offer {
        padding: 1rem;
    }
    
    .bonus-offer-title {
        font-size: 1.1rem;
    }
    
    .bonus-final-left p {
        font-size: 0.95rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .bonus-section h2 {
        font-size: 2.25rem;
    }
    
    .bonus-offers {
        gap: 1.75rem;
    }
}

.cashback-section {
    padding: 4rem 0;
    background-color: #3b2219;
    color: #fff;
}

.cashback-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #afd07c;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cashback-content {
    max-width: 900px;
    margin: 0 auto;
}

.cashback-offers {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.cashback-offer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #afd07c;
    margin-bottom: 2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cashback-offer:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.cashback-offer-title {
    display: block;
    font-size: 1.4rem;
    color: #afd07c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cashback-offer p {
    line-height: 1.6;
    color: #e8e8e8;
    margin: 0;
}

.cashback-section h3 {
    font-size: 1.8rem;
    color: #afd07c;
    margin: 3rem 0 1.5rem 0;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.no-deposit-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e8e8e8;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid rgba(175, 208, 124, 0.5);
}

.free-spins-offers {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
    display: grid;
    gap: 1.5rem;
}

.free-spins-offer {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #78b631;
    transition: background-color 0.3s ease;
}

.free-spins-offer:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.free-spins-title {
    display: block;
    font-size: 1.2rem;
    color: #afd07c;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.free-spins-offer p {
    line-height: 1.6;
    color: #e8e8e8;
    margin: 0;
    font-size: 1rem;
}

.cashback-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .cashback-section {
        padding: 3rem 0;
    }
    
    .cashback-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .cashback-section h3 {
        font-size: 1.5rem;
        margin: 2.5rem 0 1rem 0;
    }
    
    .cashback-offer {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cashback-offer-title {
        font-size: 1.2rem;
    }
    
    .no-deposit-text {
        font-size: 1rem;
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .free-spins-offers {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .free-spins-offer {
        padding: 1rem;
    }
    
    .free-spins-title {
        font-size: 1.1rem;
    }
    
    .free-spins-offer p {
        font-size: 0.95rem;
    }
    
    .cashback-cta {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .cashback-section {
        padding: 2rem 0;
    }
    
    .cashback-section h2 {
        font-size: 1.75rem;
    }
    
    .cashback-section h3 {
        font-size: 1.3rem;
    }
    
    .cashback-offer {
        padding: 1rem;
    }
    
    .cashback-offer-title {
        font-size: 1.1rem;
    }
    
    .no-deposit-text {
        font-size: 0.95rem;
        padding: 0.75rem;
    }
    
    .free-spins-offer {
        padding: 0.75rem;
    }
    
    .free-spins-title {
        font-size: 1rem;
    }
    
    .free-spins-offer p {
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .cashback-section h2 {
        font-size: 2.25rem;
    }
    
    .cashback-section h3 {
        font-size: 1.6rem;
    }
}

.games-section {
    padding: 4rem 0;
    background-color: #2a1d15;
    color: #fff;
}

.games-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #afd07c;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.games-intro {
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.games-intro-content {
    margin-bottom: 3rem;
}

.games-intro-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e8e8e8;
    margin: 0;
    text-align: center;
}

.games-intro-image {
    text-align: center;
}

.games-intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.games-categories {
    max-width: 900px;
    margin: 0 auto;
}

.game-category {
    margin-bottom: 3rem;
}

.game-category h3 {
    font-size: 1.8rem;
    color: #afd07c;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.game-category p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e8e8e8;
    margin: 0;
}

.live-games-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: center;
}

.live-games-image {
    text-align: center;
}

.live-games-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.live-games-text h3 {
    font-size: 1.8rem;
    color: #afd07c;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.live-games-text p {
    margin: 0;
}

@media (max-width: 768px) {
    .games-section {
        padding: 3rem 0;
    }
    
    .games-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .games-intro {
        margin-bottom: 3rem;
    }
    
    .games-intro-content {
        margin-bottom: 2rem;
    }
    
    .games-intro-content p {
        font-size: 1.1rem;
    }
    
    .game-category {
        margin-bottom: 2.5rem;
    }
    
    .game-category h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .game-category p {
        font-size: 1rem;
    }
    
    .live-games-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .live-games-image {
        order: -1;
    }
    
    .live-games-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .games-section {
        padding: 2rem 0;
    }
    
    .games-section h2 {
        font-size: 1.75rem;
    }
    
    .games-intro {
        margin-bottom: 2rem;
    }
    
    .games-intro-content {
        margin-bottom: 1.5rem;
    }
    
    .games-intro-content p {
        font-size: 1rem;
    }
    
    .game-category {
        margin-bottom: 2rem;
    }
    
    .game-category h3 {
        font-size: 1.3rem;
    }
    
    .game-category p {
        font-size: 0.95rem;
    }
    
    .live-games-content {
        gap: 1.5rem;
    }
    
    .live-games-text h3 {
        font-size: 1.3rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .games-section h2 {
        font-size: 2.25rem;
    }
    

    
    .game-category h3 {
        font-size: 1.6rem;
    }
    
    .live-games-content {
        grid-template-columns: 1fr 250px;
        gap: 2.5rem;
    }
    
    .live-games-text h3 {
        font-size: 1.6rem;
    }
}

.license-section {
    padding: 4rem 0;
    background-color: #3b2219;
    color: #fff;
}

.license-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #afd07c;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.license-content {
    max-width: 800px;
    margin: 0 auto;
}

.license-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e8e8e8;
    margin-bottom: 2.5rem;
}

.license-cta {
    margin-top: 2rem;
}

.support-section {
    padding: 4rem 0;
    background-color: #2a1d15;
    color: #fff;
}

.support-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #afd07c;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
}

.support-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e8e8e8;
    margin: 0;
}

@media (max-width: 768px) {
    .license-section,
    .support-section {
        padding: 3rem 0;
    }
    
    .license-section h2,
    .support-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .license-content p,
    .support-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .license-cta {
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .license-section,
    .support-section {
        padding: 2rem 0;
    }
    
    .license-section h2,
    .support-section h2 {
        font-size: 1.75rem;
    }
    
    .license-content p,
    .support-content p {
        font-size: 1rem;
    }
    
    .license-cta {
        margin-top: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .license-section h2,
    .support-section h2 {
        font-size: 2.25rem;
    }
    
    .license-content p,
    .support-content p {
        font-size: 1.15rem;
    }
}

.faq-section {
    padding: 4rem 0;
    background-color: #3b2219;
    color: #fff;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #afd07c;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.faq-content {
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.faq-item {
    margin-bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: #afd07c;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #c5e394;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    padding-top: 1rem;
}

.faq-answer-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e8e8e8;
    margin: 0;
}

.faq-conclusion {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(175, 208, 124, 0.1);
    border-radius: 8px;
    border-left: 4px solid #afd07c;
}

.faq-conclusion p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e8e8e8;
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .faq-icon {
        font-size: 1.3rem;
    }
    
    .faq-answer-content {
        padding: 0 1rem 1rem 1rem;
        padding-top: 0.75rem;
    }
    
    .faq-answer-content p {
        font-size: 1rem;
    }
    
    .faq-conclusion {
        padding: 1.5rem;
    }
    
    .faq-conclusion p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 2rem 0;
    }
    
    .faq-section h2 {
        font-size: 1.75rem;
    }
    
    .faq-question {
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    .faq-icon {
        font-size: 1.2rem;
    }
    
    .faq-answer-content {
        padding: 0 0.75rem 0.75rem 0.75rem;
        padding-top: 0.5rem;
    }
    
    .faq-answer-content p {
        font-size: 0.95rem;
    }
    
    .faq-conclusion {
        padding: 1rem;
    }
    
    .faq-conclusion p {
        font-size: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .faq-section h2 {
        font-size: 2.25rem;
    }
    
    .faq-conclusion p {
        font-size: 1.15rem;
    }
}

/* Login Page Styles */
.login-hero {
    background: var(--secondary-bg);
    padding: 4rem 0;
    text-align: center;
}

.login-hero-content h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.login-intro {
    background: var(--primary-bg);
    padding: 4rem 0;
}

.login-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.login-intro-content p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
}

.login-signup {
    background: var(--secondary-bg);
    padding: 4rem 0;
}

.login-signup-content {
    max-width: 900px;
    margin: 0 auto;
}

.login-signup-content h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.login-signup-content > p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.login-signup-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.login-signup-text {
    display: flex;
    flex-direction: column;
}

.signup-steps {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    color: #fff;
}

.signup-steps li {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.signup-steps li:last-child {
    margin-bottom: 0;
}

.signup-steps strong {
    color: var(--accent-color);
}

.login-image {
    text-align: center;
    margin: 0;
}

.login-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.verification-section {
    background: var(--primary-bg);
    padding: 4rem 0;
}

.verification-content {
    max-width: 900px;
    margin: 0 auto;
}

.verification-content h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.verification-content > p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.verification-docs {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    color: #fff;
    list-style: none;
}

.verification-docs li {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.verification-docs li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.verification-docs li:last-child {
    margin-bottom: 0;
}

.verification-docs strong {
    color: var(--accent-color);
}

.verification-cta {
    text-align: center;
    margin: 3rem 0;
}

.login-conclusion {
    background: var(--secondary-bg);
    padding: 4rem 0;
}

.login-conclusion-content {
    max-width: 900px;
    margin: 0 auto;
}

.login-conclusion-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.login-conclusion-text {
    text-align: left;
}

.login-conclusion-text p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.conclusion-image {
    text-align: center;
    margin: 0;
}

.conclusion-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Internal Links Styling */
.inlink {
    color: var(--accent-color);
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.inlink:hover {
    color: var(--button-gradient-start);
    text-decoration-color: var(--button-gradient-start);
    text-shadow: 0 0 8px rgba(175, 208, 124, 0.3);
}

.inlink:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Mobile responsiveness for login page */
@media (max-width: 768px) {
    .login-hero-content h1 {
        font-size: 2rem;
    }
    
    .login-signup-content h2 {
        font-size: 1.8rem;
    }
    
    .verification-content h3 {
        font-size: 1.6rem;
    }
    
    .signup-steps,
    .verification-docs {
        padding: 1.5rem;
    }
    
    .login-hero,
    .login-intro,
    .login-signup,
    .verification-section,
    .login-conclusion {
        padding: 2rem 0;
    }
    
    .login-signup-main,
    .login-conclusion-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .login-conclusion-text {
        text-align: center;
    }
    
    .login-image {
        margin-top: 2rem;
    }
}

.site-footer {
    background-color: #1a1108;
    color: #e8e8e8;
    padding: 3rem 0 1rem 0;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-section-title {
    display: block;
    color: #afd07c;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #d0d0d0;
}

.footer-section p:last-of-type {
    margin-bottom: 0.5rem;
}

.responsible-gambling-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.responsible-gambling-links li {
    margin-bottom: 0.5rem;
}

.responsible-gambling-links a {
    color: #afd07c;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.responsible-gambling-links a:hover,
.responsible-gambling-links a:focus {
    color: #c5e394;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.copyright p {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-section-title {
        font-size: 1.2rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .responsible-gambling-links a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding-top: 1rem;
    }
    
    .copyright p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 1.5rem 0 0.5rem 0;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-info {
        gap: 1.5rem;
    }
    
    .footer-logo-img {
        height: 45px;
    }
    
    .footer-section-title {
        font-size: 1.1rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
    
    .responsible-gambling-links a {
        font-size: 0.8rem;
    }
    
    .copyright p {
        font-size: 0.75rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 180px 1fr;
        gap: 2.5rem;
    }
    
    .footer-info {
        gap: 2.5rem;
    }
    
    .footer-logo-img {
        height: 55px;
    }
}

/* Promo Code Page Specific Styles */
.promo-hero {
    padding: 3rem 0;
    background-color: #2a1d15;
    color: #fff;
    text-align: center;
}

.promo-hero h1 {
    font-size: 2.5rem;
    color: #afd07c;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-hero-cta {
    margin-top: 1.5rem;
}

.promo-intro {
    padding: 4rem 0;
    background-color: #3b2219;
    color: #fff;
}

.promo-intro-content {
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.promo-intro-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e8e8e8;
}

.promo-intro-image {
    text-align: center;
}

.promo-intro-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.promo-bonus-section h3 {
    font-size: 1.8rem;
    color: #afd07c;
    margin: 3rem 0 1.5rem 0;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.promo-bonus-image {
    text-align: center;
    margin: 2rem 0;
}

.promo-bonus-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.promo-bonus-section > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e8e8e8;
    margin-bottom: 2rem;
}

.promo-cta-section {
    text-align: center;
    margin: 3rem 0;
}

.promo-cashback-content {
    max-width: 900px;
    margin: 0 auto;
}

.promo-cashback-image {
    text-align: center;
    margin: 2rem 0;
}

.promo-cashback-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.promo-cashback-content > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e8e8e8;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .promo-hero {
        padding: 2rem 0;
    }
    
    .promo-hero h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .promo-intro {
        padding: 3rem 0;
    }
    
    .promo-intro-content {
        margin-bottom: 2rem;
    }
    
    .promo-intro-content p {
        font-size: 1.1rem;
    }
    
    .promo-bonus-section h3 {
        font-size: 1.5rem;
        margin: 2.5rem 0 1rem 0;
    }
    
    .promo-bonus-section > p,
    .promo-cashback-content > p {
        font-size: 1rem;
    }
    
    .promo-cta-section {
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    .promo-hero h1 {
        font-size: 1.75rem;
    }
    
    .promo-intro {
        padding: 2rem 0;
    }
    
    .promo-intro-content p {
        font-size: 1rem;
    }
    
    .promo-bonus-section h3 {
        font-size: 1.3rem;
    }
    
    .promo-bonus-section > p,
    .promo-cashback-content > p {
        font-size: 0.95rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .promo-hero h1 {
        font-size: 2.25rem;
    }
    
    .promo-bonus-section h3 {
        font-size: 1.6rem;
    }
}

:focus-visible {
    outline: 2px solid var(--button-gradient-start);
    outline-offset: 2px;
} 