@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&family=Pacifico&display=swap');

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --soft-pink: #FFC1CC;
    --mint-green: #A8E6CF;
    --lavender: #C9A0DC;
    --gold: #FFD700;
    --rose-gold: #B76E79;
    --white: #FFFFFF;
    --light-beige: #F5F5DC;
    --text-dark: #333333;
    --text-light: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--rose-gold);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

nav > * {
    flex-shrink: 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rose-gold);
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    flex-shrink: 0;
    margin-left: 1rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--rose-gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav ul li a {
    font-weight: 400;
    color: var(--text-dark);
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin: 4rem 0;
    padding: 3rem 0;
    animation: fadeInUp 0.6s ease-out;
}

section:nth-child(even):not(.hero):not(.section-with-image):not(.testimonial-section):not(.stats-section):not(.decorative-pattern) {
    background: linear-gradient(135deg, rgba(255, 193, 204, 0.2) 0%, rgba(201, 160, 220, 0.2) 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

section:nth-child(odd):not(.hero):not(.section-with-image):not(.testimonial-section):not(.stats-section):not(.decorative-pattern) {
    background: linear-gradient(135deg, rgba(168, 230, 207, 0.2) 0%, rgba(255, 215, 0, 0.15) 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.section-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 193, 204, 0.2) 0%, rgba(201, 160, 220, 0.2) 100%);
    border-radius: 20px;
    width: 100%;
    box-sizing: border-box;
}

.section-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.section-image:hover {
    transform: scale(1.02);
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
    max-width: 100%;
}

.section-content {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.section-content h2 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--rose-gold));
    border-radius: 2px;
}

.game-section {
    padding: 5rem 2rem;
    margin: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 193, 204, 0.15) 0%, rgba(201, 160, 220, 0.15) 100%);
    border-radius: 20px;
}

.game-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.game-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

.game-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.game-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.stat-label {
    opacity: 0.7;
}

.game-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.game-card {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--gold) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '?';
    position: absolute;
    font-size: 3rem;
    color: var(--white);
    transition: opacity 0.3s ease;
}

.game-card.flipped::before,
.game-card.matched::before {
    opacity: 0;
}

.game-card.flipped,
.game-card.matched {
    background: linear-gradient(135deg, rgba(255, 193, 204, 0.9) 0%, rgba(201, 160, 220, 0.9) 100%);
}

.game-card:hover:not(.flipped):not(.matched) {
    transform: scale(1.05);
}

.game-card.matched {
    cursor: default;
    opacity: 0.7;
    transform: scale(0.95);
}

.game-message {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--rose-gold);
    min-height: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-message.show {
    opacity: 1;
}

.game-message.success {
    color: var(--gold);
    font-size: 1.5rem;
}

.discount-code {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.discount-code.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.discount-content {
    background: linear-gradient(135deg, rgba(255, 193, 204, 0.95) 0%, rgba(201, 160, 220, 0.95) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--gold);
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.discount-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.discount-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.discount-text strong {
    color: var(--rose-gold);
    font-size: 1.3rem;
}

.code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    width: 100%;
}

.code-text {
    background: var(--white);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rose-gold);
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px dashed var(--gold);
    word-break: break-all;
    overflow-wrap: break-word;
    min-width: 0;
    flex: 1 1 auto;
    max-width: 100%;
}

.copy-btn {
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--gold) 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.copy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.copy-btn:active {
    transform: translateY(-1px);
}

.copy-btn.copied {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.discount-note {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-top: 1rem;
    font-style: italic;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--soft-pink), var(--lavender));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(255, 193, 204, 0.4);
    animation: float 3s ease-in-out infinite;
}

.icon-wrapper svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.icon-wrapper .icon-text {
    font-size: 2.5rem;
    color: var(--white);
}

.stats-section {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--lavender) 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

.decorative-pattern {
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 215, 0, 0.1) 10px, rgba(255, 215, 0, 0.1) 20px);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    min-height: 400px;
    height: 400px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
    padding: 1.5rem;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 10;
    min-height: 40%;
}

.gallery-overlay h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: var(--white);
    opacity: 0.95;
}

.gallery-overlay .btn,
.gallery-overlay .btn-secondary {
    color: var(--white) !important;
    background-color: var(--rose-gold) !important;
    border: 2px solid var(--white);
    position: relative;
    z-index: 15;
    pointer-events: auto;
}

.gallery-overlay .btn:hover,
.gallery-overlay .btn-secondary:hover {
    color: var(--white) !important;
    background-color: var(--rose-gold) !important;
    border: 2px solid var(--white);
    opacity: 0.95;
    transform: translateY(-2px);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay * {
    position: relative;
    z-index: 11;
}

.testimonial-section {
    background-color: var(--light-beige);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10rem;
    font-family: 'Playfair Display', serif;
    color: var(--soft-pink);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    color: var(--rose-gold);
    font-size: 1.1rem;
}

.policy-page {
    max-width: 900px;
    margin: 0 auto;
}

.policy-header {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--lavender) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 2rem 0 3rem;
    text-align: center;
    color: var(--white);
}

.policy-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.policy-header p {
    color: var(--white);
    opacity: 0.95;
    font-size: 1.1rem;
}

.policy-content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.policy-content h2 {
    color: var(--rose-gold);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--soft-pink);
    font-size: 1.75rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.policy-content ul,
.policy-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--text-dark);
}

.policy-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.policy-content strong {
    color: var(--rose-gold);
    font-weight: 700;
}

.policy-highlight {
    background: linear-gradient(135deg, rgba(255, 193, 204, 0.2) 0%, rgba(201, 160, 220, 0.2) 100%);
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    margin: 2rem 0;
}

.policy-highlight p {
    margin-bottom: 0.5rem;
}

.policy-highlight p:last-child {
    margin-bottom: 0;
}

.policy-content h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero {
    background-image: url('../images/background1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 8rem 2rem;
    text-align: center;
    border-radius: 20px;
    margin: 2rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 204, 0.4) 0%, rgba(201, 160, 220, 0.4) 100%);
    z-index: 1;
    border-radius: 20px;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.hero p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--gold);
    color: var(--text-dark) !important;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    z-index: 10;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    background-color: var(--gold);
    color: var(--text-dark) !important;
}

.btn-secondary {
    background-color: var(--rose-gold);
    color: var(--white) !important;
}

.btn-secondary:hover {
    background-color: var(--rose-gold);
    color: var(--white) !important;
    box-shadow: 0 10px 25px rgba(183, 110, 121, 0.4);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    align-items: stretch;
}

.card {
    background: linear-gradient(135deg, rgba(255, 193, 204, 0.9) 0%, rgba(201, 160, 220, 0.9) 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    color: var(--white);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--lavender) 100%);
    opacity: 0.8;
    z-index: 0;
    border-radius: 15px;
}

.card > * {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.card .btn,
.card a.btn {
    color: var(--text-dark) !important;
    background-color: var(--gold) !important;
}

.card .btn-secondary,
.card a.btn-secondary {
    color: var(--white) !important;
    background-color: var(--rose-gold) !important;
}

.card .btn:hover,
.card a.btn:hover {
    color: var(--text-dark) !important;
    background-color: var(--gold) !important;
}

.card .btn-secondary:hover,
.card a.btn-secondary:hover {
    color: var(--white) !important;
    background-color: var(--rose-gold) !important;
}

.card h3 {
    color: var(--white);
}

.card p {
    color: var(--white);
    opacity: 0.95;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.quote {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    color: var(--rose-gold);
    text-align: center;
    padding: 2rem;
    background-color: var(--light-beige);
    border-radius: 15px;
    margin: 2rem 0;
}

.divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 3rem 0;
}

form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--light-beige);
    border-radius: 15px;
}

.card form {
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
    justify-content: space-between;
}

.card form textarea {
    flex-grow: 1;
    min-height: 120px;
}

.card form .btn {
    margin-top: auto;
    align-self: flex-start;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.card form label {
    color: var(--white);
}

form input,
form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--soft-pink);
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

form textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

.map-container {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-color: var(--light-beige);
    padding: 0.5rem;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 10px;
    display: block;
}

footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--white);
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: var(--gold);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
}

.privacy-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.privacy-links a {
    color: var(--white);
    font-size: 0.9rem;
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    z-index: 10000;
    display: none;
}

.privacy-popup.show {
    display: block;
}

.privacy-popup p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.privacy-popup .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.success-icon {
    font-size: 5rem;
    color: var(--mint-green);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        background-attachment: scroll;
        padding: 5rem 2rem;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .success-icon {
        width: 100px;
        height: 100px;
        font-size: 4rem;
    }

    .menu-toggle {
        display: flex;
        flex-shrink: 0;
        margin-left: 1rem;
    }

    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        padding: 0 1rem;
    }

    nav > * {
        flex-shrink: 0;
    }

    .logo {
        flex-shrink: 1;
        min-width: 0;
        font-size: 1.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    nav ul {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    nav ul.active {
        max-height: 500px;
        padding: 1rem 0;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav ul li a {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
        text-align: left;
    }

    nav ul li a::after {
        display: none;
    }

    section {
        margin: 2rem 0;
        padding: 2rem 0;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .section-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .section-image {
        order: -1;
        width: 100%;
    }

    .section-image img {
        min-height: 250px;
    }

    .section-content {
        padding: 1.5rem;
        width: 100%;
    }

    .section-content h2 {
        font-size: 1.5rem;
    }

    .game-section {
        padding: 3rem 1.5rem;
        margin: 2rem 0;
    }

    .game-section h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .game-info {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .game-stat {
        font-size: 1rem;
    }

    .game-board {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .game-card {
        font-size: 2rem;
    }

    .game-card::before {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stats-section {
        padding: 3rem 1.5rem;
    }

    .stats-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stats-section .grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .stats-section .grid > div {
        padding: 1.5rem;
    }

    .stats-section .grid h3 {
        font-size: 1.3rem;
    }

    .stats-section .grid p {
        font-size: 0.95rem;
    }

    .testimonial-section {
        padding: 3rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1.2rem;
    }

    .decorative-pattern {
        padding: 2rem 1.5rem;
    }

    .divider {
        margin: 2rem 0;
    }

    section:nth-child(even):not(.hero):not(.section-with-image):not(.testimonial-section):not(.stats-section):not(.decorative-pattern),
    section:nth-child(odd):not(.hero):not(.section-with-image):not(.testimonial-section):not(.stats-section):not(.decorative-pattern) {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        min-height: 350px;
        height: 350px;
    }

    .privacy-popup {
        max-width: calc(100% - 40px);
        right: 20px;
        left: 20px;
    }

    .map-container {
        padding: 0.25rem;
    }

    .map-container iframe {
        height: 350px;
    }

    footer {
        padding: 2rem 1.5rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    .copyright {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .privacy-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .testimonial-section::before {
        font-size: 6rem;
        top: -10px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 3rem 1rem;
        background-attachment: scroll;
        min-height: 350px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }

    .logo {
        font-size: 1.2rem;
        flex-shrink: 1;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    nav {
        padding: 0 0.75rem;
        flex-wrap: nowrap;
    }

    nav > * {
        flex-shrink: 0;
    }

    .menu-toggle {
        flex-shrink: 0;
        margin-left: 0.5rem;
        padding: 0.4rem;
    }

    .menu-toggle span {
        width: 22px;
        height: 2px;
    }

    main {
        padding: 1rem;
    }

    section {
        padding: 1.5rem 0;
    }

    .card {
        padding: 1.5rem;
    }

    form {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-with-image {
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
        gap: 1.5rem;
    }

    .section-content {
        padding: 1rem;
    }

    .section-content h2 {
        font-size: 1.3rem;
    }

    .game-section {
        padding: 2rem 1rem;
        margin: 1.5rem 0;
    }

    .game-section h2 {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .game-info {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .game-stat {
        font-size: 0.9rem;
    }

    .game-board {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .game-card {
        font-size: 1.5rem;
    }

    .game-card::before {
        font-size: 1.5rem;
    }

    .game-message {
        font-size: 1.1rem;
        margin-top: 1rem;
    }

    .game-message.success {
        font-size: 1.2rem;
    }

    #reset-game {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .discount-content {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
        border-width: 2px;
    }

    .discount-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
    }

    .discount-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .discount-text strong {
        font-size: 1.1rem;
    }

    .code-display {
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem 0;
    }

    .code-text {
        font-size: 1.2rem;
        padding: 0.75rem 1rem;
        letter-spacing: 2px;
        width: 100%;
        text-align: center;
    }

    .copy-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
    }

    .discount-note {
        font-size: 0.8rem;
        margin-top: 0.75rem;
    }

    .section-image img {
        min-height: 200px;
    }

    .gallery-item {
        min-height: 280px;
        height: 280px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stats-section {
        padding: 2rem 1rem;
    }

    .stats-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stats-section .grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .stats-section .grid > div {
        padding: 1rem;
    }

    .stats-section .grid h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .stats-section .grid p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .map-container iframe {
        height: 300px;
    }

    .policy-page {
        padding: 0 1rem;
    }

    .policy-header {
        padding: 2rem 1.5rem;
    }

    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-content {
        padding: 2rem 1.5rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }

    .policy-content h3 {
        font-size: 1.2rem;
    }

    footer {
        padding: 1.5rem 1rem 0.75rem;
    }

    .footer-content {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }

    .copyright {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }

    .privacy-links {
        gap: 0.5rem;
    }

    .privacy-links a {
        font-size: 0.8rem;
    }

    .testimonial-section::before {
        font-size: 5rem;
        top: -5px;
    }
}

