/* ===============================================
   Cat Casino - Светлый дизайн с розовыми акцентами
   =============================================== */

/* === CSS Variables === */
:root {
    /* Цветовая палитра - светлая с розовыми акцентами */
    --primary-pink: #FF1B8D;
    --secondary-pink: #FF6BA9;
    --light-pink: #FFE5F2;
    --pale-pink: #FFF8FC;
    --accent-purple: #9B4DCA;
    --accent-coral: #FF5E7A;
    
    /* Нейтральные цвета */
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --light-gray: #F3F4F6;
    --gray: #E5E7EB;
    --medium-gray: #9CA3AF;
    --dark-gray: #6B7280;
    --charcoal: #374151;
    --black: #1F2937;
    
    /* Функциональные цвета */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --info: #3B82F6;
    
    /* Градиенты */
    --gradient-pink: linear-gradient(135deg, var(--primary-pink) 0%, var(--secondary-pink) 100%);
    --gradient-purple: linear-gradient(135deg, var(--accent-purple) 0%, var(--primary-pink) 100%);
    --gradient-light: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    
    /* Тени */
    --shadow-sm: 0 1px 3px rgba(255, 27, 141, 0.08);
    --shadow-md: 0 4px 12px rgba(255, 27, 141, 0.12);
    --shadow-lg: 0 8px 24px rgba(255, 27, 141, 0.16);
    --shadow-xl: 0 16px 48px rgba(255, 27, 141, 0.2);
    
    /* Размеры */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Шрифты */
    --font-primary: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

/* === Global Reset === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: var(--off-white);
    color: var(--black);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === Container === */
.container-fluid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Navigation Panel === */
.navigation-panel {
    background: var(--white);
    padding: 18px 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--light-pink);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo-container {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-symbol {
    font-size: 36px;
    animation: pulse-rotate 3s ease-in-out infinite;
}

@keyframes pulse-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(-10deg) scale(1.1); }
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 26px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.5px;
}

.logo-accent {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.menu-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--gradient-pink);
    transition: transform 0.3s ease;
}

.menu-link:hover {
    color: var(--primary-pink);
}

.menu-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-secondary {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: var(--light-gray);
    color: var(--charcoal);
    border: 2px solid var(--gray);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--white);
    border-color: var(--primary-pink);
    color: var(--primary-pink);
    transform: translateY(-2px);
}

.btn-primary {
    padding: 10px 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    background: var(--gradient-pink);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* === Welcome Block === */
.welcome-block {
    padding: 80px 0 60px;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.welcome-block::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 27, 141, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.welcome-content {
    padding: 20px 0;
}

.badge-new {
    display: inline-block;
    padding: 6px 16px;
    background: var(--light-pink);
    color: var(--primary-pink);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.welcome-content h1 {
    font-family: var(--font-secondary);
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--black);
}

.gradient-text {
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle-large {
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 32px;
}

.features-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 36px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gray);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    border-color: var(--primary-pink);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tag-icon {
    font-size: 24px;
}

.tag-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
}

.cta-group {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
}

.button-primary-large {
    padding: 16px 40px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    background: var(--gradient-pink);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    display: inline-block;
}

.button-primary-large:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-3px);
}

.button-outline-large {
    padding: 16px 40px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    background: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    transition: all 0.3s ease;
    display: inline-block;
}

.button-outline-large:hover {
    background: var(--light-pink);
    transform: translateY(-3px);
}

.trust-indicators {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--medium-gray);
}

.trust-indicators span {
    display: flex;
    align-items: center;
}

/* === Welcome Showcase === */
.welcome-showcase {
    position: relative;
    height: 480px;
}

.showcase-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.showcase-card {
    position: absolute;
    width: 200px;
    height: 280px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--light-pink);
    transition: all 0.4s ease;
    overflow: hidden;
}

.showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-pink);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.card-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.card-emoji {
    font-size: 64px;
    margin-bottom: 16px;
    display: block;
}

.card-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.showcase-card.card-one {
    top: 10%;
    left: 0;
    animation: float 6s ease-in-out infinite;
}

.showcase-card.card-two {
    top: 50%;
    left: 25%;
    animation: float 6s ease-in-out infinite 2s;
}

.showcase-card.card-three {
    top: 20%;
    right: 5%;
    animation: float 6s ease-in-out infinite 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-20px) rotate(-2deg); }
}

.showcase-card:hover {
    transform: scale(1.08) rotate(0deg) !important;
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-xl);
}

.showcase-card:hover::before {
    opacity: 0.05;
}

.showcase-card:hover .card-label {
    color: var(--primary-pink);
}

/* === Statistics Bar === */
.statistics-bar {
    padding: 50px 0;
    background: var(--white);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--pale-pink);
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-pink);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-pink);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 44px;
    font-weight: 900;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

/* === Advantages Section === */
.advantages-section {
    padding: 70px 0;
    background: var(--off-white);
}

.section-intro {
    text-align: center;
    margin-bottom: 56px;
}

.section-heading {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 16px;
}

.section-lead {
    font-size: 17px;
    color: var(--dark-gray);
    max-width: 680px;
    margin: 0 auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.advantage-item {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray);
    transition: all 0.4s ease;
    position: relative;
}

.advantage-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-pink);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.advantage-item:hover::after {
    opacity: 1;
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.advantage-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 14px;
}

.advantage-item p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* === Popular Games === */
.popular-games {
    padding: 70px 0;
    background: var(--pale-pink);
}

.games-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.game-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--light-pink);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.game-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-pink);
}

.game-image {
    width: 100%;
    height: 180px;
    background: var(--gradient-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    position: relative;
}

.game-info {
    padding: 18px;
}

.game-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.game-provider {
    font-size: 13px;
    color: var(--medium-gray);
}

.game-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 27, 141, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-box:hover .game-hover-overlay {
    opacity: 1;
}

.play-button {
    padding: 12px 32px;
    background: var(--white);
    color: var(--primary-pink);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

.small-hint {
    margin-top: 18px;
    font-size: 14px;
    color: var(--medium-gray);
}

.link-inline {
    color: var(--primary-pink);
    text-decoration: none;
    border-bottom: 1px dashed var(--primary-pink);
}

.link-inline:hover {
    border-bottom-style: solid;
}

/* === Promotions Section === */
.promotions-section {
    padding: 70px 0;
    background: var(--white);
}

.promotions-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.promo-card {
    background: var(--off-white);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray);
    transition: all 0.3s ease;
    position: relative;
}

.promo-card:hover {
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.promo-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gradient-pink);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 14px;
}

.promo-card p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.promo-link {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.promo-link:hover {
    gap: 10px;
}

/* === Testimonials Section === */
.testimonials-section {
    padding: 70px 0;
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-box {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-box::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 72px;
    color: var(--light-pink);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-box:hover {
    transform: translateY(-6px);
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-md);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.rating {
    color: var(--primary-pink);
    font-size: 14px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* === Site Footer === */
.site-footer {
    background: var(--gradient-purple);
    padding: 56px 0 24px;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about {
    padding-right: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    font-size: 32px;
}

.footer-logo h3 {
    font-size: 22px;
    font-weight: 800;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    gap: 10px;
}

.badge-item {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.footer-column {
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 32px 0;
}

.footer-base {
    text-align: center;
}

.copyright-text {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 12px;
}

.footer-links {
    font-size: 12px;
    opacity: 0.7;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.separator {
    margin: 0 8px;
}

/* === Page Hero === */
.page-hero {
    padding: 60px 0 40px;
    background: var(--gradient-light);
    border-bottom: 3px solid var(--light-pink);
}

.page-hero-content {
    text-align: center;
}

.page-hero-content h1 {
    font-family: var(--font-secondary);
    font-size: 44px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

.last-update {
    font-size: 13px;
    color: var(--medium-gray);
    margin-top: 12px;
}

/* === Content Section === */
.content-section {
    padding: 56px 0;
    background: var(--white);
}

.content-block {
    margin-bottom: 48px;
}

.content-block h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
}

.content-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 14px;
    margin-top: 24px;
}

.content-block h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.content-block p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-block ul,
.content-block ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.content-block li {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 8px;
}

.content-block strong {
    color: var(--black);
    font-weight: 700;
}

.content-block a {
    color: var(--primary-pink);
    text-decoration: underline;
}

.content-block a:hover {
    text-decoration: none;
}

/* === Bonus Cards === */
.bonus-cards-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.bonus-detail-card {
    background: var(--pale-pink);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-pink);
}

.bonus-step {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-pink);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.bonus-detail-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.bonus-amount {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-pink);
    margin-bottom: 16px;
}

.bonus-features {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.bonus-features li {
    padding: 6px 0;
    font-size: 14px;
}

/* === Tables === */
.cashback-table,
.response-times {
    margin: 24px 0;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

thead {
    background: var(--gradient-pink);
    color: var(--white);
}

th {
    padding: 14px;
    font-weight: 700;
    font-size: 14px;
    text-align: left;
}

td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--gray);
    font-size: 14px;
}

tbody tr:hover {
    background: var(--pale-pink);
}

/* === CTA Center === */
.cta-center {
    text-align: center;
    margin-top: 48px;
}

.small-text {
    margin-top: 16px;
    font-size: 13px;
    color: var(--medium-gray);
}

/* === Additional Buttons === */
.button-primary {
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    background: var(--gradient-pink);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    display: inline-block;
}

.button-primary:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.button-outline {
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    background: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    transition: all 0.3s ease;
    display: inline-block;
}

.button-outline:hover {
    background: var(--light-pink);
    transform: translateY(-2px);
}

.button-play {
    padding: 10px 24px;
    background: var(--gradient-pink);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button-play:hover {
    transform: scale(1.05);
}

/* === Tournament Info === */
.tournament-info {
    background: var(--pale-pink);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-pink);
    margin: 24px 0;
}

.tournament-info h3 {
    font-size: 24px;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.tournament-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.tournament-param {
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-md);
}

.param-label {
    font-size: 13px;
    color: var(--medium-gray);
    display: block;
    margin-bottom: 6px;
}

.param-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
}

/* === Promo Codes === */
.promo-codes-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.promo-code-item {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-pink);
    text-align: center;
    transition: all 0.3s ease;
}

.promo-code-item:hover {
    border-color: var(--primary-pink);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.code-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-pink);
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    font-family: monospace;
}

.promo-code-item p {
    font-size: 14px;
    color: var(--dark-gray);
}

/* === Rules List === */
.rules-list {
    background: var(--off-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray);
    margin: 24px 0;
}

.rules-list h3 {
    font-size: 20px;
    color: var(--primary-pink);
    margin-bottom: 14px;
    margin-top: 24px;
}

.rules-list h3:first-child {
    margin-top: 0;
}

/* === Stats Highlight === */
.stats-highlight {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.stat-item {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-pink);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--primary-pink);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 600;
}

/* === Game Categories === */
.game-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.category-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray);
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.category-count {
    font-size: 14px;
    color: var(--primary-pink);
    font-weight: 700;
    margin-bottom: 12px;
}

.category-features {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.category-features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--dark-gray);
}

/* === Providers Grid === */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.provider-item {
    background: var(--pale-pink);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid var(--light-pink);
    transition: all 0.3s ease;
}

.provider-item:hover {
    border-color: var(--primary-pink);
    transform: translateY(-3px);
}

.provider-item h4 {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 6px;
}

.provider-item p {
    font-size: 13px;
    color: var(--medium-gray);
    margin: 0;
}

/* === Popular Games List === */
.popular-games-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.game-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid var(--gray);
    transition: all 0.3s ease;
}

.game-item:hover {
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-sm);
}

.game-rank {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-pink);
    min-width: 50px;
    text-align: center;
}

.game-info {
    flex: 1;
}

.game-info h4 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 4px;
}

.game-info p {
    font-size: 14px;
    color: var(--medium-gray);
    margin: 0;
}

/* === Jackpot Games === */
.jackpot-games {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.jackpot-item {
    background: var(--gradient-light);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-pink);
    text-align: center;
    transition: all 0.3s ease;
}

.jackpot-item:hover {
    border-color: var(--primary-pink);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.jackpot-item h4 {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 8px;
}

.jackpot-provider {
    font-size: 13px;
    color: var(--medium-gray);
    margin-bottom: 16px;
}

.jackpot-amount {
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

/* === Demo Features === */
.demo-features ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.demo-features li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--dark-gray);
}

/* === Filter Options === */
.filter-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.filter-options li {
    padding: 10px 16px;
    background: var(--pale-pink);
    border-radius: var(--radius-sm);
    font-size: 14px;
}

/* === Registration Steps === */
.registration-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.step-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: var(--gradient-pink);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    box-shadow: var(--shadow-md);
}

.step-card h3 {
    font-size: 20px;
    color: var(--black);
    margin-top: 16px;
    margin-bottom: 12px;
}

.step-card ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.step-card li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--dark-gray);
}

/* === Requirements Block === */
.requirements-block {
    background: var(--off-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray);
    margin: 24px 0;
}

.requirements-block h3 {
    font-size: 18px;
    color: var(--primary-pink);
    margin-bottom: 12px;
    margin-top: 20px;
}

.requirements-block h3:first-child {
    margin-top: 0;
}

/* === Verification Info === */
.verification-info {
    background: var(--pale-pink);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-pink);
    margin: 24px 0;
}

.verification-info h3 {
    font-size: 18px;
    color: var(--primary-pink);
    margin-bottom: 12px;
    margin-top: 20px;
}

.verification-info h3:first-child {
    margin-top: 0;
}

/* === Login Methods === */
.login-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.login-option {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray);
    text-align: center;
    transition: all 0.3s ease;
}

.login-option:hover {
    border-color: var(--primary-pink);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.login-option h4 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 10px;
}

/* === Security Tips === */
.security-tips ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.security-tips li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
}

.security-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* === Welcome Bonus Highlight === */
.welcome-bonus-highlight {
    background: var(--gradient-pink);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    margin: 32px 0;
}

.welcome-bonus-highlight h3 {
    font-size: 32px;
    margin-bottom: 12px;
}

.welcome-bonus-highlight p {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.95;
}

.welcome-bonus-highlight .button-primary {
    background: var(--white);
    color: var(--primary-pink);
}

.welcome-bonus-highlight .button-primary:hover {
    background: var(--off-white);
}

/* === FAQ List === */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 24px 0;
}

.faq-item {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    font-size: 18px;
    color: var(--primary-pink);
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}

/* === Mirror Links === */
.mirror-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.mirror-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray);
    transition: all 0.3s ease;
}

.mirror-item:hover {
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-md);
}

.mirror-status {
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.mirror-status.active {
    background: var(--success);
    color: var(--white);
}

.mirror-url {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    font-family: monospace;
}

.mirror-info {
    font-size: 13px;
    color: var(--medium-gray);
}

.mirror-note {
    background: var(--light-pink);
    padding: 20px;
    border-radius: var(--radius-md);
    margin: 24px 0;
}

/* === Access Methods === */
.access-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.method-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray);
    transition: all 0.3s ease;
}

.method-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.method-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.method-card h3 {
    font-size: 22px;
    color: var(--primary-pink);
    margin-bottom: 14px;
}

.method-note {
    font-size: 13px;
    color: var(--medium-gray);
    font-style: italic;
    margin-top: 12px;
}

/* === Notification Methods === */
.notification-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.notification-item {
    background: var(--pale-pink);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-pink);
}

.notification-item h4 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 10px;
}

/* === Security Warnings === */
.security-warnings {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 24px 0;
}

.warning-box {
    background: #FFF3CD;
    border: 2px solid #FFC107;
    padding: 24px;
    border-radius: var(--radius-lg);
}

.warning-box h4 {
    color: #856404;
    margin-bottom: 12px;
}

.security-tips-box {
    background: #D1ECF1;
    border: 2px solid #17A2B8;
    padding: 24px;
    border-radius: var(--radius-lg);
}

.security-tips-box h4 {
    color: #0C5460;
    margin-bottom: 12px;
}

/* === Download Section === */
.download-section {
    max-width: 500px;
    margin: 32px auto;
}

.download-card {
    background: var(--gradient-light);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 3px solid var(--primary-pink);
    text-align: center;
}

.platform-logo {
    font-size: 72px;
    margin-bottom: 20px;
}

.download-card h3 {
    font-size: 24px;
    color: var(--black);
    margin-bottom: 20px;
}

.version-info {
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.version-info p {
    font-size: 14px;
    color: var(--dark-gray);
    margin: 4px 0;
}

/* === Installation Guide === */
.installation-guide {
    background: var(--off-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray);
    margin: 32px 0;
}

.installation-guide h3 {
    font-size: 20px;
    color: var(--primary-pink);
    margin-bottom: 16px;
}

.installation-guide ol {
    padding-left: 24px;
}

.installation-guide li {
    margin-bottom: 16px;
}

.installation-guide li strong {
    color: var(--black);
    display: block;
    margin-bottom: 6px;
}

/* === System Requirements === */
.system-requirements {
    background: var(--pale-pink);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-pink);
    margin: 24px 0;
}

.system-requirements h4 {
    font-size: 18px;
    color: var(--primary-pink);
    margin-bottom: 14px;
}

/* === Advantages List === */
.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.advantages-list .advantage-item {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray);
}

.advantages-list .advantage-item h4 {
    font-size: 20px;
    color: var(--primary-pink);
    margin-bottom: 12px;
}

/* === Functionality Grid === */
.functionality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.function-card {
    background: var(--pale-pink);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-pink);
    transition: all 0.3s ease;
}

.function-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-4px);
}

.function-card h4 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 10px;
}

/* === Security Features === */
.security-features {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.security-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
}

.security-features li::before {
    content: '🔒';
    position: absolute;
    left: 0;
}

/* === Timeline History === */
.timeline-history {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 32px 0;
}

.history-item {
    display: flex;
    gap: 24px;
}

.history-year {
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 120px;
}

.history-content h3 {
    font-size: 22px;
    color: var(--primary-pink);
    margin-bottom: 10px;
}

/* === License Info === */
.license-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 24px 0;
}

.license-details,
.license-meaning {
    background: var(--pale-pink);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-pink);
}

/* === Principles Grid === */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.principle-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray);
    transition: all 0.3s ease;
}

.principle-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.principle-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.principle-card h3 {
    font-size: 20px;
    color: var(--primary-pink);
    margin-bottom: 12px;
}

/* === Achievements Stats === */
.achievements-stats {
    margin: 32px 0;
}

.achievements-stats .stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.achievements-stats .stat-box {
    background: var(--pale-pink);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-pink);
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--dark-gray);
}

/* === Partners Section === */
.partners-section {
    background: var(--off-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray);
    margin: 24px 0;
}

.partners-section h3 {
    font-size: 20px;
    color: var(--primary-pink);
    margin-bottom: 12px;
    margin-top: 20px;
}

.partners-section h3:first-child {
    margin-top: 0;
}

/* === Responsibility Tools === */
.responsibility-tools {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.responsibility-tools li {
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--gray);
}

.responsibility-tools li:last-child {
    border-bottom: none;
}

/* === Help Contacts === */
.help-contacts {
    background: var(--light-pink);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.help-contacts h4 {
    color: var(--primary-pink);
    margin-bottom: 14px;
}

/* === Company Contacts === */
.company-contacts {
    background: var(--pale-pink);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-pink);
    margin: 24px 0;
}

.company-contacts p {
    font-size: 15px;
    margin: 10px 0;
}

/* === Contact Methods === */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.contact-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.contact-card h3 {
    font-size: 22px;
    color: var(--primary-pink);
    margin-bottom: 10px;
}

.contact-time {
    font-size: 14px;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-card strong {
    color: var(--black);
}

/* === Support Topics === */
.support-topics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 24px 0;
}

.topic-column {
    background: var(--pale-pink);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-pink);
}

.topic-column h3 {
    font-size: 18px;
    color: var(--primary-pink);
    margin-bottom: 14px;
}

/* === Knowledge Base === */
.knowledge-base {
    background: var(--off-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray);
    margin: 24px 0;
}

.faq-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.faq-category {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
}

.faq-category h4 {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 12px;
}

/* === Social Links === */
.social-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.social-item {
    background: var(--white);
    padding: 28px 20px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray);
    text-align: center;
    transition: all 0.3s ease;
}

.social-item:hover {
    border-color: var(--primary-pink);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.social-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

.social-item h4 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 8px;
}

/* === Feedback Options === */
.feedback-options {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.feedback-options li {
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--gray);
}

.feedback-options li:last-child {
    border-bottom: none;
}

/* === Legal Address === */
.legal-address {
    background: var(--pale-pink);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-pink);
    margin: 24px 0;
}

/* === Response Times Table === */
.response-times {
    margin: 24px 0;
}

/* === Contact Info Box === */
.contact-info-box {
    background: var(--pale-pink);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-pink);
    margin: 24px 0;
}

.contact-info-box p {
    margin: 10px 0;
}

/* === Warning Signs === */
.warning-signs ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.warning-signs li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15px;
}

.warning-signs li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

/* === Help Resources === */
.help-resources {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.resource-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray);
    transition: all 0.3s ease;
}

.resource-card:hover {
    border-color: var(--primary-pink);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.resource-card h3 {
    font-size: 20px;
    color: var(--primary-pink);
    margin-bottom: 14px;
}

/* === Safe Gaming Tips === */
.safe-gaming-tips {
    background: var(--off-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray);
    margin: 24px 0;
}

.safe-gaming-tips h3 {
    font-size: 18px;
    color: var(--primary-pink);
    margin-bottom: 12px;
    margin-top: 20px;
}

.safe-gaming-tips h3:first-child {
    margin-top: 0;
}

/* === Minors Protection === */
.minors-protection {
    background: #FFF3CD;
    border: 2px solid #FFC107;
    padding: 28px;
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.minors-protection h3 {
    color: #856404;
    margin-bottom: 14px;
}

/* === Platform Commitments === */
.platform-commitments {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.platform-commitments li {
    padding: 10px 0;
    font-size: 15px;
}

/* === Useful Links Grid === */
.useful-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 24px 0;
}

.useful-links-grid div {
    background: var(--pale-pink);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--light-pink);
}

.useful-links-grid h4 {
    font-size: 18px;
    color: var(--primary-pink);
    margin-bottom: 14px;
}

/* === Acceptance Note === */
.acceptance-note {
    background: var(--light-pink);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 3px solid var(--primary-pink);
    margin: 32px 0;
}

.acceptance-note h3 {
    color: var(--primary-pink);
    margin-bottom: 14px;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .welcome-grid,
    .advantages-grid,
    .games-showcase,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-row,
    .stats-highlight {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promotions-list,
    .bonus-cards-list,
    .game-categories,
    .registration-steps,
    .access-methods,
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .providers-grid,
    .social-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-links,
    .nav-buttons {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .welcome-grid,
    .advantages-grid,
    .games-showcase,
    .stats-row,
    .stats-highlight,
    .testimonials-grid,
    .footer-grid,
    .bonus-cards-list,
    .game-categories,
    .providers-grid,
    .registration-steps,
    .login-methods,
    .access-methods,
    .notification-methods,
    .jackpot-games,
    .promo-codes-info,
    .functionality-grid,
    .license-info,
    .principles-grid,
    .contact-methods,
    .support-topics,
    .faq-categories,
    .social-links,
    .help-resources,
    .useful-links-grid,
    .filter-options {
        grid-template-columns: 1fr;
    }
    
    .welcome-content h1 {
        font-size: 36px;
    }
    
    .section-heading {
        font-size: 32px;
    }
    
    .welcome-showcase {
        height: 300px;
    }
    
    .features-compact {
        grid-template-columns: 1fr;
    }
    
    .cta-group {
        flex-direction: column;
    }
    
    .tournament-details {
        grid-template-columns: 1fr;
    }
    
    .achievements-stats .stat-row {
        grid-template-columns: repeat(2, 1fr);
    }
}