/* ============================================
   Основные стили и переменные
   ============================================ */

:root {
    --primary-color: #c9a961;
    --primary-dark: #a68944;
    --primary-light: #e5d4a6;
    --secondary-color: #1a1a2e;
    --secondary-light: #16213e;
    --accent-color: #ff6b6b;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --text-gray: #6c757d;
    --bg-light: #f8f9fa;
    --bg-dark: #0f0f1e;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ============================================
   Навигация
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 20px var(--shadow-strong);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(26, 26, 46, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    letter-spacing: 2px;
}

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

.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    min-width: 220px;
    padding: 1rem 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 20px var(--shadow-strong);
    z-index: 1000;
    list-style: none;
}

.nav-item-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-light);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(201, 169, 97, 0.1);
    border-left-color: var(--primary-color);
    padding-left: 2rem;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(201, 169, 97, 0.1);
}

.cta-nav {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.cta-nav:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.burger-menu span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   Герой секция
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '♠ ♥ ♣ ♦ ♠ ♥ ♣ ♦';
    position: absolute;
    font-size: 20rem;
    color: rgba(201, 169, 97, 0.1);
    animation: floatHero 20s infinite ease-in-out;
    letter-spacing: 3rem;
    line-height: 1.5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.hero::after {
    content: '♦ ♣ ♥ ♠';
    position: absolute;
    font-size: 15rem;
    color: rgba(201, 169, 97, 0.05);
    animation: floatHero 25s infinite ease-in-out reverse;
    letter-spacing: 4rem;
    bottom: 10%;
    right: -10%;
    opacity: 0.8;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); }
    25% { transform: translate(-50%, -50%) translateY(-30px) rotate(3deg); }
    50% { transform: translate(-50%, -50%) translateY(-50px) rotate(5deg); }
    75% { transform: translate(-50%, -50%) translateY(-30px) rotate(-3deg); }
}

@keyframes floatHero {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-40px) rotate(4deg); }
    50% { transform: translateY(-70px) rotate(8deg); }
    75% { transform: translateY(-40px) rotate(-4deg); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--primary-color);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Кнопки
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ============================================
   Секции
   ============================================ */

section {
    padding: 5rem 0;
    position: relative;
}

/* Animated background for sections with main headings */
.poker-section,
.casino-section,
.about-section,
.contact-section {
    position: relative;
    overflow: hidden;
}

.poker-section::before,
.casino-section::before,
.about-section::before,
.contact-section::before {
    content: '♠ ♥ ♣ ♦ ♠ ♥ ♣';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18rem;
    color: rgba(201, 169, 97, 0.07);
    animation: float 25s infinite ease-in-out;
    letter-spacing: 3rem;
    line-height: 1.5;
    z-index: 0;
    pointer-events: none;
}

.poker-section::after,
.casino-section::after,
.about-section::after {
    content: '♦ ♠ ♥ ♣';
    position: absolute;
    top: 20%;
    right: -5%;
    font-size: 14rem;
    color: rgba(201, 169, 97, 0.04);
    animation: float 30s infinite ease-in-out reverse;
    letter-spacing: 2rem;
    z-index: 0;
    pointer-events: none;
}

.poker-section > .container,
.casino-section > .container,
.about-section > .container,
.contact-section > .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.5);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

/* ============================================
   Услуги
   ============================================ */

.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* ============================================
   Покер секция
   ============================================ */

.poker-section {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
}

.poker-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.poker-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7);
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

/* Lead на темных секциях */
.poker-section .lead,
.contact-section .lead {
    color: var(--text-light);
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.6);
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.poker-types h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tag {
    background: rgba(201, 169, 97, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    border: 1px solid var(--primary-color);
    font-size: 0.9rem;
}

.poker-image img,
.props-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.poker-image img:hover,
.props-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(201, 169, 97, 0.4);
}

/* ============================================
   Казино секция
   ============================================ */

.casino-section {
    background: var(--white);
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.casino-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.casino-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    transition: var(--transition);
    opacity: 0;
}

.casino-card:hover::before {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.casino-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.3);
}

.casino-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.casino-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

/* ============================================
   Реквизит секция
   ============================================ */

.props-section {
    background: var(--bg-light);
}

.props-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.props-text h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
}

.props-text > p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.props-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.prop-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 3px 10px var(--shadow);
    position: relative;
    z-index: 2;
}

.prop-item strong {
    color: var(--primary-color);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.prop-item p {
    color: var(--text-gray);
}

.props-placeholder {
    order: -1;
}

/* ============================================
   О нас секция
   ============================================ */

.about-section {
    background: var(--white);
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(201, 169, 97, 0.2);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.about-feature:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.about-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.about-feature p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ============================================
   Контакты секция
   ============================================ */

.contact-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-dark) 100%);
    color: var(--text-light);
}

.contact-section .section-title {
    color: var(--primary-color);
}

.contact-section .section-subtitle {
    color: var(--text-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(201, 169, 97, 0.3);
    position: relative;
    z-index: 2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(201, 169, 97, 0.4);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 15px rgba(201, 169, 97, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 245, 245, 0.5);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    backdrop-filter: blur(15px);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-info-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
}

.contact-info-card a {
    color: var(--text-light);
    transition: var(--transition);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

/* ============================================
   Футер
   ============================================ */

.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-gray);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-light);
    transition: var(--transition);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-gray);
}

/* ============================================
   Page Hero (for subpages)
   ============================================ */

.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-dark) 100%);
    overflow: hidden;
    margin-top: 70px;
}

.page-hero::before {
    content: '♠ ♥ ♣ ♦ ♠ ♥ ♣ ♦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    color: rgba(201, 169, 97, 0.1);
    animation: floatHero 22s infinite ease-in-out;
    letter-spacing: 2rem;
    line-height: 1.5;
    z-index: 0;
}

.page-hero::after {
    content: '♦ ♣ ♥ ♠ ♦';
    position: absolute;
    bottom: 10%;
    right: -5%;
    font-size: 12rem;
    color: rgba(201, 169, 97, 0.06);
    animation: floatHero 28s infinite ease-in-out reverse;
    letter-spacing: 3rem;
    z-index: 0;
}

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

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

/* ============================================
   Content Section Styles
   ============================================ */

.content-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '♠ ♥ ♣ ♦ ♠';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16rem;
    color: rgba(201, 169, 97, 0.05);
    animation: float 30s infinite ease-in-out;
    letter-spacing: 3rem;
    line-height: 1.6;
    z-index: 0;
    pointer-events: none;
}

.content-section > .container {
    position: relative;
    z-index: 1;
}

.content-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.content-intro h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.content-block {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.content-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.content-block h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.content-block p {
    color: var(--text-gray);
    line-height: 1.7;
}

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

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem;
    border-radius: 15px;
    color: var(--white);
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ============================================
   How It Works Section
   ============================================ */

.how-it-works-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.work-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.work-step h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 3px 10px var(--shadow);
}

.step-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

/* ============================================
   Packages & Cards
   ============================================ */

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(201, 169, 97, 0.2);
    position: relative;
    transition: var(--transition);
    z-index: 2;
    box-shadow: 0 5px 15px var(--shadow);
}

.package-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(201, 169, 97, 0.1) 100%);
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.package-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-card ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-note {
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
}

/* ============================================
   Occasions & Ideal For
   ============================================ */

.occasions-grid,
.ideal-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.occasion-card,
.ideal-card,
.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.occasion-card:hover,
.ideal-card:hover,
.benefit-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 5px 20px var(--shadow);
}

.occasion-card h3,
.ideal-card h3,
.benefit-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.ideal-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* ============================================
   Games & Reasons Lists
   ============================================ */

.games-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.game-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px var(--shadow);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.game-icon {
    font-size: 2rem;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.reason-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px var(--shadow);
}

.reason-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    flex-shrink: 0;
}

.reason-item strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

/* ============================================
   Ideas & Testimonials
   ============================================ */

.ideas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.idea-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    position: relative;
    z-index: 2;
    box-shadow: 0 3px 10px var(--shadow);
}

.idea-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.testimonial-section {
    margin: 4rem 0;
}

.testimonial {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    padding: 3rem;
    border-radius: 15px;
    color: var(--text-light);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   Additional Sections
   ============================================ */

.seamless-experience,
.additional-options,
.benefits-section,
.why-casino-bucks {
    margin: 4rem 0;
}

.seamless-experience h2,
.additional-options h2,
.benefits-section h2,
.why-casino-bucks h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.seamless-experience p,
.additional-options p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ============================================
   Адаптивность - Планшеты и меньше (991px)
   ============================================ */

@media (max-width: 991px) {
    /* Бургер меню */
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        gap: 40px;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem;
        border-bottom: 1px solid rgba(201, 169, 97, 0.2);
        text-align: center;
    }
    
    /* Dropdown menu mobile */
    .dropdown-menu {
        position: static;
        display: none;
        background: rgba(15, 15, 30, 0.95);
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin-left: 1rem;
    }
    
    .nav-item-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        border-left: 2px solid var(--primary-color);
    }
    
    /* Герой */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Сетки */
    .poker-content,
    .props-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .props-placeholder {
        order: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ============================================
   Адаптивность - Мобильные (768px)
   ============================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .services-grid,
    .casino-grid,
    .about-stats,
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand .footer-logo {
        justify-content: center;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .image-placeholder {
        height: 300px;
    }
}

/* ============================================
   Адаптивность - Маленькие мобильные (480px)
   ============================================ */

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero::before {
        font-size: 10rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card,
    .casino-card,
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .logo a {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
}
