* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    background-color: #000;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.hero-prev,
.hero-next {
    background: rgba(255, 215, 0, 0.8);
    border: none;
    color: #000;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-prev:hover,
.hero-next:hover {
    background: #ffd700;
    transform: scale(1.1);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #ffd700;
    transform: scale(1.2);
}

.age-warning {
    background: #ffd700;
    color: #000;
    padding: 15px 0;
    text-align: center;
    font-weight: bold;
}

.age-warning-inline {
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    padding: 15px 25px;
    border-radius: 10px;
    display: inline-block;
    font-weight: bold;
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #ffd700;
    color: #000;
}

.btn-primary:hover {
    background: #ffa500;
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #000;
    transform: scale(1.05);
}

.btn-animated {
    position: relative;
    overflow: hidden;
}

.btn-animated::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-animated:hover::before {
    left: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
}

.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #000 0%, #111 100%);
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.page-subtitle {
    font-size: 1.3rem;
    color: #ccc;
}

.games {
    padding: 100px 0;
    background: #111;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background: #222;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
}

.game-image {
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid #ffd700;
}

.game-content {
    padding: 30px;
    text-align: center;
}

.game-title {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.game-description {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.8;
}

.CTA {
    background-color: #1a1a1a;
    padding: 60px 0;
    color: #ffffff;
}

.CTA-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.CTA-image {
    flex: 1;
    min-width: 300px;
}

.CTA-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.CTA-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.CTA-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.CTA-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.CTA-description {
    font-size: 1.125rem;
    color: #d3d3d3;
    margin-bottom: 30px;
    line-height: 1.6;
}

.game-hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
    margin-top: 80px;
}

.game-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.game-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.game-hero-title {
    font-size: 3.5rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.game-hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.game-info {
    padding: 100px 0;
    background: #111;
}

.game-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.game-description p {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.game-features {
    margin-top: 40px;
}

.game-features h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.game-features ul {
    list-style: none;
    padding: 0;
}

.game-features li {
    color: #ccc;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
}

.game-features li::before {
    content: "✓";
    color: #ffd700;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.home-events {
    padding: 80px 0;
    background: #111;
}

.events-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.events-left {
    position: sticky;
    top: 120px;
}

.events-intro {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
    text-align: center;
}

.events-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.event-item:hover,
.event-item.active {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

.event-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-item:hover img {
    transform: scale(1.05);
}

.link-wrap {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 10px 15px;
}

.link-wrap a {
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.date {
    font-size: 12px;
    color: #ffd700;
    text-transform: uppercase;
    font-weight: bold;
}

.link-text {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.link-text:hover {
    color: #ffd700;
}

.title-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
    padding: 30px 20px 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

.events-items-detailed {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.event-item-detailed {
    background: #222;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.event-item-detailed:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.event-item-detailed .img-wrap {
    position: relative;
    overflow: hidden;
}

.event-item-detailed .img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-item-detailed:hover .img-wrap img {
    transform: scale(1.05);
}

.content-wrap {
    padding: 25px;
}

.content-wrap .date {
    color: #ffd700;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
}

.content-wrap .title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.content-wrap .description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-wrap {
    text-align: right;
}

.game-rules {
    padding: 100px 0;
    background: #000;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.rule-step {
    background: #222;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.rule-step:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.step-number {
    background: #ffd700;
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.rule-step h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.rule-step p {
    color: #ccc;
    line-height: 1.6;
}

.game-packages {
    padding: 100px 0;
    background: #111;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.package-card {
    padding: 20px;
    background: #222;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.package-card:hover {
    border-color: #ffd700;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.package-card.featured {
    border-color: #ffd700;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #ffd700;
    color: #000;
    padding: 8px 40px;
    font-weight: bold;
    font-size: 14px;
    transform: rotate(45deg);
    z-index: 10;
}

.package-header {
    background: linear-gradient(135deg, #333 0%, #222 100%);
    padding: 40px 30px;
    text-align: center;
    border-bottom: 2px solid #ffd700;
}

.package-name {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.package-price {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
}

.package-content {
    padding: 40px 30px;
}

.package-features {
    list-style: none;
    margin-bottom: 40px;
}

.package-features li {
    color: #ccc;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
}

.package-features li::before {
    content: "✓";
    color: #ffd700;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.package-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 10px;
}

.cta {
    padding: 100px 0;
    background: #000;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.cta-title {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 25px;
}

.cta-description {
    color: #ccc;
    margin-bottom: 35px;
    line-height: 1.8;
}

.footer {
    background: #111;
    padding: 60px 0 30px;
    border-top: 3px solid #ffd700;
}

.footer-content {
    text-align: center;
}

.footer-logo-img {
    height: 40px;
    margin-bottom: 30px;
}

.footer-form {
    margin-bottom: 40px;
}

.footer-form h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-bottom: 2px solid #ffd700;
    background: transparent;
    color: #fff;
    font-size: 16px;
}

.email-input::placeholder {
    color: #888;
}

.email-input:focus {
    outline: none;
    border-bottom-color: #ffa500;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-copyright {
    color: #888;
    font-size: 14px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: #222;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid #ffd700;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #ffd700;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #ffa500;
}

.popup-body {
    padding: 40px;
}

.popup-header {
    text-align: center;
    margin-bottom: 30px;
}

.popup-title {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.popup-date {
    font-size: 1.1rem;
    color: #ccc;
    text-transform: uppercase;
    font-weight: bold;
}

.popup-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
}

.popup-description {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.popup-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.detail-item {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.detail-label {
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 14px;
}

.detail-value {
    color: #fff;
    font-size: 1.1rem;
}

.popup-packages {
    margin-top: 40px;
}

.packages-title {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.about-content {
    padding: 80px 0;
    background: #111;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid #ffd700;
}

.mission-section {
    padding: 80px 0;
    background: #000;
    text-align: center;
}

.mission-text {
    color: #ccc;
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

.values-section {
    padding: 100px 0;
    background: #111;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: #222;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #ffd700;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.value-card p {
    color: #ccc;
    line-height: 1.6;
}

.team-section {
    padding: 100px 0;
    background: #000;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: #222;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: #ffd700;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.team-member p {
    color: #ccc;
    padding: 0 25px 30px;
    line-height: 1.6;
}

.responsible-gaming {
    padding: 100px 0;
    background: #111;
}

.responsible-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.responsible-content p {
    color: #ccc;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

.responsible-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature {
    background: #222;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
}

.feature h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature p {
    color: #ccc;
    line-height: 1.6;
    text-align: left;
}

.contact-section {
    padding: 100px 0;
    background: #000;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-item {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-item strong {
    color: #ffd700;
}

.contact-item a {
    color: #d3d3d3;
    text-decoration: none;
}

.contact-item a:hover {
    color: #ffd700;
}

.contact-form h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-form-element {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-element input,
.contact-form-element textarea {
    padding: 15px;
    border: none;
    border-bottom: 2px solid #ffd700;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-family: "Times New Roman", serif;
}

.contact-form-element input::placeholder,
.contact-form-element textarea::placeholder {
    color: #888;
}

.contact-form-element input:focus,
.contact-form-element textarea:focus {
    outline: none;
    border-bottom-color: #ffa500;
}

.contact-form-element textarea {
    resize: vertical;
    min-height: 120px;
}

.privacy-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: #d3d3d3;
    margin: 10px 0;
}

.privacy-checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #ffd700;
}

.privacy-checkbox a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-checkbox a:hover {
    color: #ffaa00;
}

.policy-content {
    padding: 80px 0;
    background: #111;
}

.policy-text {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 50px;
}

.policy-section h2 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 10px;
}

.policy-section h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.policy-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.policy-section ul {
    color: #ccc;
    margin: 20px 0;
    padding-left: 30px;
}

.policy-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.last-updated {
    background: #222;
    padding: 15px 25px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    margin-bottom: 40px;
}

.contact-details {
    background: #222;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
    margin-top: 20px;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details strong {
    color: #ffd700;
}

.policy-section a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #ffa500;
    text-decoration: underline;
}

.thank-you {
    background-color: #1a1a1a;
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.thank-you-description {
    font-size: 1.125rem;
    color: #d3d3d3;
    margin-bottom: 30px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .events-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .events-left {
        position: static;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .popup-content {
        width: 95%;
        margin: 20px;
    }

    .popup-body {
        padding: 30px 20px;
    }

    .popup-title {
        font-size: 2rem;
    }

    .popup-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .game-hero-title {
        font-size: 2.5rem;
    }

    .game-hero-subtitle {
        font-size: 1.1rem;
    }

    .game-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rules-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .package-card.featured {
        transform: none;
    }

    .package-card.featured:hover {
        transform: translateY(-10px);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 300px;
    }

    .mission-text {
        font-size: 1.1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .responsible-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .policy-text {
        padding: 0 20px;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }

    .CTA-content {
        flex-direction: column;
        text-align: center;
    }

    .CTA-text {
        order: 1;
    }

    .CTA-image {
        order: 2;
    }

    .CTA-title {
        font-size: 2rem;
    }

    .CTA-description {
        font-size: 1rem;
    }

    .thank-you {
        padding: 60px 0;
    }

    .thank-you-title {
        font-size: 2rem;
    }

    .thank-you-description {
        font-size: 1rem;
    }

    .CTA-image,
    .CTA-text {
        min-width: 250px;
    }

    .hero-controls {
        top: 60%;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .game-hero-title {
        font-size: 2rem;
    }

    .game-hero-subtitle {
        font-size: 1rem;
    }

    .age-warning-inline {
        padding: 12px 20px;
        font-size: 16px;
    }

    .value-card,
    .team-member,
    .feature {
        padding: 25px 20px;
    }

    .policy-section {
        margin-bottom: 40px;
    }

    .last-updated,
    .contact-details {
        padding: 20px;
    }

    .CTA {
        padding: 40px 0;
    }

    .CTA-title {
        font-size: 1.75rem;
    }

    .CTA-description {
        font-size: 0.875rem;
    }

    .thank-you {
        padding: 40px 0;
    }

    .thank-you-title {
        font-size: 1.75rem;
    }

    .thank-you-description {
        font-size: 0.875rem;
    }
}