/* Base styles for the page-fishing-games scope */
.page-fishing-games {
    font-family: 'Arial', sans-serif;
    color: #FFF3E6; /* Text Main */
    background: #0D0E12; /* Background */
    line-height: 1.6;
    font-size: 16px;
}

.page-fishing-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    box-sizing: border-box;
}

.page-fishing-games__section {
    padding: 60px 0;
    text-align: center;
}

.page-fishing-games__section-title {
    font-size: 36px;
    font-weight: 700;
    color: #FF8C1A; /* Main Color */
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.page-fishing-games__section-description {
    font-size: 18px;
    color: #FFF3E6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__content-block {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: left;
}

.page-fishing-games__content-block p {
    margin-bottom: 15px;
}

/* Buttons */
.page-fishing-games__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Break long words */
}

.page-fishing-games__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button Color */
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 130, 0, 0.4);
}

.page-fishing-games__btn-primary:hover {
    background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
    box-shadow: 0 6px 20px rgba(255, 130, 0, 0.6);
}

.page-fishing-games__btn-secondary {
    background: transparent;
    color: #FF8C1A;
    border: 2px solid #FF8C1A; /* Main Color */
    box-shadow: none;
}

.page-fishing-games__btn-secondary:hover {
    background: rgba(255, 140, 26, 0.1);
    color: #FFA53A;
    border-color: #FFA53A;
}

.page-fishing-games__btn-play,
.page-fishing-games__btn-details,
.page-fishing-games__btn-contact,
.page-fishing-games__btn-payment {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #ffffff;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
}

.page-fishing-games__btn-play:hover,
.page-fishing-games__btn-details:hover,
.page-fishing-games__btn-contact:hover,
.page-fishing-games__btn-payment:hover {
    background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
}

/* Hero Section */
.page-fishing-games__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, not --header-offset */
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-fishing-games__hero-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 30px;
}

.page-fishing-games__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7);
}

.page-fishing-games__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 15px;
    max-width: 900px;
    margin-bottom: 40px;
}

.page-fishing-games__main-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: #FFB04D; /* Glow */
    text-shadow: 0 0 10px rgba(255, 176, 77, 0.5);
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
}

.page-fishing-games__lead-text {
    font-size: clamp(16px, 2vw, 22px);
    color: #FFF3E6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-fishing-games__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}