:root {
    --primary-color: #e01642;
    --secondary-color: #ffff00;
    --dark-bg: #1a1a1a;
    --text-color: #ffffff;
    --spacing: 1rem;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

.header {
    background-color: var(--dark-bg);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

.header--scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing);
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.header__logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
}

.header__logo-img {
    max-height: 3rem;
    width: auto;
    display: block;
}

.header__nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    margin-right: 2rem;
}

.header__nav-list {
    display: flex;
    align-items: center;
}

.header__nav-item {
    display: flex;
    position: relative;
}

.header__nav-link {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    height: 100%;
}

.header__nav-link:hover {
    color: var(--text-color);
    background-color: #e01642;
}

.header__nav-link.active {
    background-color: transparent;
}

.header__nav-link.active:hover {
    background-color: #e01642;
}

.header__nav-link--dropdown::after {
    content: "▼";
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

.header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: var(--dark-bg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100;
}

.header__nav-item:hover .header__dropdown {
    opacity: 1;
    visibility: visible;
}

.header__dropdown-item {
    display: block;
    width: 100%;
}

.header__dropdown-link {
    display: block;
    padding: 0.8rem 1rem;
    color: var(--text-color);
    transition: background-color 0.3s ease;
}

.header__dropdown-link:hover {
    background-color: var(--primary-color);
}

.header__casino-button {
    display: flex;
    align-items: stretch;
}

.casino-button {
    background-color: var(--secondary-color);
    color: #000;
    font-weight: bold;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.casino-button:hover {
    background-color: #e6e600;
}

/* Main content styles */
.content {
    padding: 2rem 0;
    background-color: var(--dark-bg);
    color: var(--text-color);
}

/* Direct element selectors */
.content h1, h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.content h2, h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.content h3, h3 {
    font-size: 1.1rem;
    margin: 1.8rem 0 0.8rem;
    color: #ffffff;
    font-weight: 600;
    display: inline-block;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--primary-color);
}

.content p, p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.content__image-container {
    margin: 3rem 0;
    text-align: center;
}

.content__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.content__image-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.content__subtitle {
    font-size: 1.75rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.content__subtitle-small {
    font-size: 1.15rem;
    margin: 1.8rem 0 0.8rem;
    color: #ffffff;
    font-weight: 600;
    display: inline-block;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--primary-color);
}

.content__table {
    width: 100%;
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.content__table-row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.content__table-cell {
    padding: 1rem;
    flex: 1;
}

.content__table-cell:first-child {
    background-color: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    flex: 0 0 200px;
}

footer {
    background-color: #111;
    padding: 2rem 0;
    text-align: center;
    margin-top: 2rem;
}

/* Hamburger menu */
.header__menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    position: relative;
    z-index: 101;
}

.header__menu-icon {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: background-color 0.3s ease;
}

.header__menu-icon::before,
.header__menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.header__menu-icon::before {
    transform: translateY(-8px);
}

.header__menu-icon::after {
    transform: translateY(8px);
}

.header__menu-toggle.active .header__menu-icon {
    background-color: transparent;
}

.header__menu-toggle.active .header__menu-icon::before {
    transform: rotate(45deg);
}

.header__menu-toggle.active .header__menu-icon::after {
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .header__container {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 0;
    }
    
    .header__logo {
        padding: 0.5rem 1rem;
        flex: 0 0 auto;
    }
    
    .header__menu-toggle {
        display: block;
        order: 3;
        margin-right: 1rem;
    }
    
    .header__nav {
        order: 4;
        width: 100%;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background-color: var(--dark-bg);
    }
    
    .header__nav.active {
        max-height: 300px;
    }
    
    .header__nav-list {
        width: 100%;
        flex-direction: column;
    }
    
    .header__nav-item {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    
    .header__nav-link {
        width: 100%;
        text-align: center;
    }
    
    .header__casino-button {
        order: 2;
        flex: 0 0 auto;
        padding-right: 1rem;
    }
    
    .casino-button {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .content__title {
        font-size: 2rem;
    }
    
    .content__text {
        font-size: 1rem;
    }

    .content__subtitle {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
    }

    .content__subtitle-small {
        font-size: 1.25rem;
        margin: 2rem 0 1rem;
    }

    .content__table-row {
        flex-direction: column;
    }

    .content__table-cell {
        padding: 0.75rem;
    }

    .content__table-cell:first-child {
        flex: none;
        background-color: rgba(255, 255, 255, 0.05);
    }

    .header__dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: #333;
    }
    
    /* Make sure the dropdown items take full width */
    .header__dropdown-item {
        width: 100%;
    }
    
    /* Style the dropdown links for mobile */
    .header__dropdown-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
    
    /* Override hover behavior on mobile */
    .header__nav-item:hover .header__dropdown {
        opacity: 0;
        visibility: hidden;
    }
}

/* Bonus cards */
.bonus-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.bonus-card {
    background-color: #ffff00;
    color: #000;
    padding: 1.5rem;
    border-radius: 8px;
    height: 100%;
}

.bonus-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.bonus-card__content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.bonus-card__content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .bonus-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bonus-cards {
        grid-template-columns: 1fr;
    }
    
    .content__subtitle {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
    }

    .content__subtitle-small {
        font-size: 1.25rem;
        margin: 2rem 0 1rem;
    }

    .content__table-row {
        flex-direction: column;
    }

    .content__table-cell {
        padding: 0.75rem;
    }

    .content__table-cell:first-child {
        flex: none;
        background-color: rgba(255, 255, 255, 0.05);
    }
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 1.5rem;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs__item {
    font-size: 0.95rem;
    color: #888;
}

.breadcrumbs__item:not(:last-child)::after {
    content: "/";
    margin: 0 0.5rem;
    color: #888;
}

.breadcrumbs__link {
    color: #e91e63;
    text-decoration: none;
}

.breadcrumbs__link:hover {
    text-decoration: underline;
}

.breadcrumbs__item--current {
    color: #888;
}

/* FAQ Styles */
.faq {
    margin: 2rem 0;
}

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

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem;
    margin: 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--primary-color);
}

.faq-icon {
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

.faq-answer {
    padding: 1rem;
}

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

@media (max-width: 768px) {
    .faq-question {
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0.75rem;
    }
}

/* Link Styles */
.rabona-link {
    color: #e91e63;
    text-decoration: none;
}

.rabona-link:hover {
    text-decoration: underline;
}

/* Class-based selectors for backward compatibility */
.content__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.content__text {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Image Styles */
.content__image-container {
    margin: 3rem 0;
    text-align: center;
}

.content__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.content__image-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: #121212;
    color: var(--text-color);
    overflow: hidden;
    padding: 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), url('../img/rabona-casino.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: var(--spacing);
    padding-right: var(--spacing);
    width: 100%;
}

.hero__title {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-color);
    max-width: 90%;
    line-height: 1.2;
}

.hero__title span {
    color: var(--primary-color);
    display: inline-block;
}

.hero__subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 90%;
    line-height: 1.5;
    color: #e6e6e6;
}

/* Trust indicators */
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 90%;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    border-left: 3px solid var(--primary-color);
}

.hero__trust-icon {
    font-size: 1.1rem;
}

.hero__trust-text {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Disclaimer */
.hero__disclaimer {
    margin-top: 1.2rem;
    font-size: 0.8rem;
    color: #999;
    max-width: 90%;
    text-align: center;
    align-self: center;
    line-height: 1.4;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
}

.hero__button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.hero__button--primary {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(224, 22, 66, 0.5);
}

.hero__button--primary:hover {
    background-color: #c51538;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(224, 22, 66, 0.6);
}

.hero__button--secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.hero__button--secondary:hover {
    background-color: var(--secondary-color);
    color: #000;
}

/* Mobile adjustments */
@media (max-width: 992px) {
    .hero {
        min-height: auto;
    }
    
    .hero__title {
        font-size: 2.8rem;
        max-width: 100%;
    }
    
    .hero__subtitle {
        font-size: 1.2rem;
        max-width: 100%;
    }
    
    .hero__trust {
        justify-content: center;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero__content {
        padding: 3rem 1rem;
        align-items: center;
        text-align: center;
    }
    
    .hero__title {
        font-size: 2.2rem;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero__subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .hero__trust {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .hero__trust-item {
        width: 100%;
        justify-content: center;
    }
    
    .hero__buttons {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hero__button {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        width: auto;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.8rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    .hero__trust-item {
        padding: 0.5rem 0.75rem;
    }
    
    .hero__trust-text {
        font-size: 0.9rem;
    }
    
    .hero__button {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
        font-size: 0.85rem;
        white-space: normal;
        line-height: 1.3;
    }
    
    .hero__disclaimer {
        font-size: 0.75rem;
    }
}

/* Author Section */
.author {
    padding: 3rem 0;
    background-color: #121212;
    position: relative;
}

.author__container {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.author__image {
    flex: 0 0 auto;
    text-align: center;
}

.author__img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(224, 22, 66, 0.3);
}

.author__info {
    flex: 1;
}

.author__name {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.author__bio p {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .author__container {
        flex-direction: column;
        text-align: center;
    }
    
    .author__img {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
    }
    
    .author__name {
        font-size: 1.5rem;
    }
    
    .author__bio p {
        font-size: 1rem;
    }
} 