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

:root {
    --primary-dark: #0a0a0a;
    --dark-bg: #1a1a1a;
    --dark-card: #252525;
    --accent-orange: #ff6b35;
    --accent-amber: #f7931e;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #a0a0a0;
    --glow-orange: rgba(255, 107, 53, 0.3);
    --glow-amber: rgba(247, 147, 30, 0.3);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    visibility: visible;
    opacity: 1;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-amber) 100%);
    position: relative;
    box-shadow: 0 0 20px var(--glow-orange);
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-orange);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-orange);
    box-shadow: 0 0 10px var(--glow-orange);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 50%, #0a0503 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 107, 53, 0.03) 2px, rgba(255, 107, 53, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 107, 53, 0.03) 2px, rgba(255, 107, 53, 0.03) 4px);
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-amber) 100%);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--glow-orange);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-orange);
}

.cta-button.large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.section-header * {
    visibility: visible !important;
    opacity: 1 !important;
}

.section-header h2,
.section-header .section-title {
    color: var(--text-primary) !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.section-header p,
.section-header .section-subtitle {
    color: var(--text-secondary) !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.section-title-wrapper {
    margin-bottom: 2rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(247, 147, 30, 0.2) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    color: var(--text-primary) !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block;
}

.title-gradient {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-orange) 50%, var(--accent-amber) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 1;
}

.title-gradient::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-orange) 50%, transparent 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--glow-orange);
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 1;
}

.decoration-line {
    flex: 1;
    max-width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.5) 50%, transparent 100%);
    position: relative;
}

.decoration-line::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--glow-orange);
}

.decoration-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.section-subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.25rem);
    color: var(--text-secondary) !important;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    padding: 0 1rem;
    animation: none;
    position: relative;
    visibility: visible !important;
    opacity: 1 !important;
    display: block;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 107, 53, 0.2);
    position: absolute;
    font-family: serif;
    line-height: 1;
}

.section-subtitle::before {
    top: -20px;
    left: -10px;
}

.section-subtitle::after {
    bottom: -40px;
    right: -10px;
}

.how-it-works {
    background: var(--dark-bg);
    position: relative;
    z-index: 1;
    visibility: visible !important;
    opacity: 1 !important;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
    visibility: visible !important;
    opacity: 1 !important;
}

.steps-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    visibility: visible !important;
    opacity: 1 !important;
}

.step-card {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-amber) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px var(--glow-orange);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px var(--glow-orange);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--text-primary);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-image {
    width: 100%;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background-color: var(--dark-card);
}

.step-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 1;
}

.step-card:hover .step-image img {
    transform: scale(1.05);
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.popular-games {
    background: var(--primary-dark);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.popular-games .container {
    position: relative;
    z-index: 2;
}

.popular-games-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.popular-games-gradient {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.1);
    }
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    visibility: visible;
    opacity: 1;
}

.game-card {
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 107, 53, 0.15);
    position: relative;
    text-decoration: none;
    display: block;
    color: inherit;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    opacity: 1;
    transform: translateY(0);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(247, 147, 30, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.5);
    border-color: rgba(255, 107, 53, 0.6);
}

.game-thumbnail {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 280px;
    display: block;
    background-color: var(--dark-card);
    border-radius: 20px 20px 0 0;
}

.game-thumbnail:empty::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.game-big-bass {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.game-bounty-showdown {
    background: linear-gradient(135deg, #c1272d 0%, #8b1a1f 100%);
}

.game-fire-archer {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.game-hotline {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.game-thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: none;
}

.game-card:hover .game-thumbnail img {
    transform: scale(1.1);
}

.game-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 2;
    pointer-events: none;
}

.game-thumbnail picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.game-thumbnail picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: cover !important;
}

.game-thumbnail * {
    visibility: visible;
}

.game-thumbnail img[src],
.game-thumbnail picture img[src] {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.game-thumbnail img:not([src]),
.game-thumbnail picture img:not([src]) {
    display: none;
}

.game-thumbnail {
    background-color: var(--dark-card);
    background-image: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
}

.game-thumbnail img[src=""],
.game-thumbnail picture img[src=""] {
    display: none;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
    backdrop-filter: blur(1px);
}

.game-card:hover .play-overlay {
    opacity: 1;
}

.play-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-amber) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-primary);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
    transform: scale(0.7) rotate(-90deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.game-card:hover .play-icon {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.8);
}

.game-title {
    padding: 1.75rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    background: linear-gradient(180deg, var(--dark-card) 0%, rgba(37, 37, 37, 0.95) 100%);
    margin: 0;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
}

.game-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-amber) 100%);
    transition: width 0.3s ease;
}

.game-card:hover .game-title {
    color: var(--accent-orange);
    background: linear-gradient(180deg, rgba(37, 37, 37, 0.98) 0%, var(--dark-card) 100%);
}

.game-card:hover .game-title::after {
    width: 60%;
}

.why-choose-us {
    background: var(--dark-bg);
    position: relative;
    z-index: 1;
    visibility: visible !important;
    opacity: 1 !important;
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
    visibility: visible !important;
    opacity: 1 !important;
}

.why-choose-content {
    display: grid !important;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
    visibility: visible !important;
    opacity: 1 !important;
}

.why-choose-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    background-color: var(--dark-card);
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.why-choose-image img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    transition: transform 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 1;
}

.why-choose-image:hover img {
    transform: scale(1.02);
}

.benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    visibility: visible !important;
    opacity: 1 !important;
}

.benefit-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-amber) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 10px rgba(255, 107, 53, 0.3));
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 50%, #0a0503 100%);
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    z-index: 0;
    overflow: hidden;
}

.cta-bg-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.cta-content * {
    visibility: visible !important;
    opacity: 1 !important;
}

.cta-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    color: var(--text-primary);
    visibility: visible;
    opacity: 1;
}

.cta-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    visibility: visible;
    opacity: 1;
}

.footer {
    background: var(--primary-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

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

.footer-brand {
    max-width: 500px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 107, 53, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.sitemap-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.sitemap-link:hover {
    color: var(--accent-orange);
}

.footer-disclaimer {
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--accent-orange);
}

.footer-disclaimer p {
    color: var(--accent-orange);
    font-size: 0.85rem;
    line-height: 1.8;
    margin: 0;
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    visibility: visible !important;
}

.fade-in.visible {
    opacity: 1 !important;
    transform: translateY(0);
    visibility: visible !important;
}

.game-card.fade-in {
    opacity: 1;
    transform: translateY(0);
    animation: subtleFadeIn 0.8s ease-out;
}

@keyframes subtleFadeIn {
    from {
        opacity: 0.7;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.game-card.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .steps-grid,
    .games-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .popular-games {
        padding: 4rem 0;
    }
    .hero-bg-image,
    .cta-bg-image,
    .game-thumbnail img,
    .game-thumbnail picture img,
    .step-image img,
    .why-choose-image img {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }

    .game-thumbnail {
        height: 250px;
        min-height: 250px;
    }

    .step-image {
        height: 180px;
    }

    .title-decoration {
        gap: 0.5rem;
        margin: 1.5rem 0;
    }

    .decoration-line {
        max-width: 80px;
    }

    .decoration-icon {
        font-size: 1.5rem;
    }

    .section-subtitle::before,
    .section-subtitle::after {
        display: none;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .step-card,
    .benefit-card {
        padding: 2rem;
    }

    .popular-games {
        padding: 3rem 0;
    }

    .hero-bg-image,
    .cta-bg-image {
        width: 100% !important;
        height: 100% !important;
        opacity: 1 !important;
    }

    .game-thumbnail {
        height: 220px;
        min-height: 220px;
    }

    .step-image {
        height: 160px;
    }

    .why-choose-image img {
        width: 100% !important;
        height: auto !important;
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .cta-button.large {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--accent-orange);
    color: var(--text-primary);
}

.about-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
    padding: 4rem 0;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.about-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.about-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    color: var(--text-primary);
}

.about-hero-text {
    text-align: left;
    background: rgba(10, 10, 10, 0.7);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.about-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 600;
}

.about-hero-text p {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-hero-text p:last-child {
    margin-bottom: 0;
}

.why-choose-about {
    background: var(--dark-bg);
    padding: 5rem 0;
}

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

.why-choose-about-text {
    max-width: 600px;
}

.why-choose-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.why-choose-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.why-choose-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.3rem;
}

.why-choose-closing {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-top: 2rem;
}

.why-choose-about-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.why-choose-about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.why-choose-about-image:hover img {
    transform: scale(1.02);
}

.our-mission {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.mission-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.mission-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.75) 100%);
    z-index: 2;
}

.mission-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.mission-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    color: var(--text-primary);
}

.mission-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: rgba(10, 10, 10, 0.6);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.what-we-offer {
    background: var(--primary-dark);
    padding: 5rem 0;
}

.what-we-offer-intro {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 1rem auto 3rem;
    line-height: 1.8;
    text-align: center;
}

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

.offer-card {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--accent-amber) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.offer-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 10px rgba(255, 107, 53, 0.3));
}

.offer-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 968px) {
    .why-choose-about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 70vh;
        padding: 3rem 0;
    }

    .about-hero-text {
        padding: 2rem;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .mission-content,
    .about-hero-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-text {
        padding: 1.5rem;
    }

    .mission-subtitle {
        padding: 1.5rem;
    }

    .offer-card {
        padding: 2rem;
    }
}


.collection-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
    padding: 4rem 0;
}

.collection-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.collection-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.collection-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 2;
}

.collection-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.collection-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    color: var(--text-primary);
}

.collection-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: rgba(10, 10, 10, 0.6);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.games-collection {
    background: var(--primary-dark);
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .collection-hero {
        min-height: 60vh;
        padding: 3rem 0;
    }

    .collection-hero-content {
        padding: 1.5rem;
    }

    .collection-hero-subtitle {
        padding: 1.5rem;
    }
}

.contact-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
    padding: 3rem 0;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.contact-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.contact-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    color: var(--text-primary);
}

.contact-section {
    background: var(--dark-bg);
    padding: 5rem 0;
}

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

.contact-info {
    max-width: 600px;
}

.contact-info-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.contact-info-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--accent-orange);
}

.email-icon {
    font-size: 1.5rem;
}

.email-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--accent-amber);
    text-decoration: underline;
}

.contact-response-time {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 1.5rem 0;
    font-style: italic;
}

.contact-closing {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 2rem;
}

.contact-form-wrapper {
    background: var(--dark-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

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

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: var(--primary-dark);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 40vh;
        padding: 2rem 0;
    }

    .contact-section {
        padding: 3rem 0;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .contact-info-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-content {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-email {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

.privacy-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
    padding: 3rem 0;
}

.privacy-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.privacy-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.privacy-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 2;
}

.privacy-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.privacy-hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    color: var(--text-primary);
}

.privacy-content-section {
    background: var(--dark-bg);
    padding: 5rem 0;
}

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

.privacy-intro-text {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.8;
}

.privacy-block {
    background: var(--dark-card);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.privacy-block:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.privacy-block-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.privacy-block-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-block-subtitle {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.privacy-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.privacy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.privacy-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--accent-amber);
    text-decoration: underline;
}

.privacy-note {
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--accent-orange);
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
}

.privacy-help-block {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.05) 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.privacy-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.privacy-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 10px;
    border-left: 3px solid var(--accent-orange);
}

.privacy-contact-icon {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .privacy-hero {
        min-height: 40vh;
        padding: 2rem 0;
    }

    .privacy-content-section {
        padding: 3rem 0;
    }

    .privacy-block,
    .privacy-help-block {
        padding: 2rem;
    }

    .privacy-contact-info {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero-content {
        padding: 1.5rem;
    }

    .privacy-block,
    .privacy-help-block {
        padding: 1.5rem;
    }

    .privacy-list li {
        padding-left: 1.5rem;
    }
}

.responsible-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
    padding: 3rem 0;
}

.responsible-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.responsible-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.responsible-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 2;
}

.responsible-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.responsible-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    color: var(--text-primary);
}

.responsible-content-section {
    background: var(--dark-bg);
    padding: 5rem 0;
}

.responsible-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.responsible-intro-text {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.responsible-intro-text:last-child {
    margin-bottom: 0;
}

.responsible-block {
    background: var(--dark-card);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.responsible-block:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.responsible-block-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.responsible-block-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.responsible-block-text:last-child {
    margin-bottom: 0;
}

.responsible-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.responsible-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.responsible-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.responsible-tips-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.responsible-tips-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    margin-bottom: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--accent-orange);
    transition: all 0.3s ease;
}

.responsible-tips-list li:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tip-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    flex: 1;
}

.responsible-resources-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.responsible-resources-list li {
    padding: 1rem 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.responsible-resources-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.responsible-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.responsible-link:hover {
    color: var(--accent-amber);
    text-decoration: underline;
}

.resource-phone {
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.responsible-help-block {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.05) 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.responsible-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.responsible-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 10px;
    border-left: 3px solid var(--accent-orange);
}

.responsible-contact-icon {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .responsible-hero {
        min-height: 40vh;
        padding: 2rem 0;
    }

    .responsible-content-section {
        padding: 3rem 0;
    }

    .responsible-block,
    .responsible-help-block {
        padding: 2rem;
    }

    .responsible-tips-list li {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .responsible-hero-content {
        padding: 1.5rem;
    }

    .responsible-block,
    .responsible-help-block {
        padding: 1.5rem;
    }

    .responsible-tips-list li {
        padding: 1rem;
    }
}

.privacy-notice-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
    padding: 3rem 0;
}

.privacy-notice-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.privacy-notice-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.privacy-notice-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 2;
}

.privacy-notice-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.privacy-notice-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    color: var(--text-primary);
}

.privacy-notice-content-section {
    background: var(--dark-bg);
    padding: 5rem 0;
}

.privacy-notice-block {
    background: var(--dark-card);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.privacy-notice-block:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.privacy-notice-section-number {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.privacy-notice-block-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-notice-block-text:last-child {
    margin-bottom: 0;
}

.privacy-notice-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.privacy-notice-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.privacy-notice-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.privacy-notice-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-notice-link:hover {
    color: var(--accent-amber);
    text-decoration: underline;
}

.privacy-notice-note {
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--accent-orange);
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.note-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.note-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    flex: 1;
}

.note-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.privacy-notice-contact-block {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.05) 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

@media (max-width: 768px) {
    .privacy-notice-hero {
        min-height: 40vh;
        padding: 2rem 0;
    }

    .privacy-notice-content-section {
        padding: 3rem 0;
    }

    .privacy-notice-block,
    .privacy-notice-contact-block {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .privacy-notice-hero-content {
        padding: 1.5rem;
    }

    .privacy-notice-block,
    .privacy-notice-contact-block {
        padding: 1.5rem;
    }

    .privacy-notice-list li {
        padding-left: 1.5rem;
    }

    .privacy-notice-note {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.terms-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
    padding: 3rem 0;
}

.terms-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.terms-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.terms-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 2;
}

.terms-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.terms-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    color: var(--text-primary);
}

.terms-content-section {
    background: var(--dark-bg);
    padding: 5rem 0;
}

.terms-block {
    background: var(--dark-card);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.terms-block:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.terms-section-number {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.3);
}

.terms-block-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.terms-block-text:last-child {
    margin-bottom: 0;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.terms-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.terms-support-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.terms-support-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--accent-orange);
}

.support-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.support-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.support-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
    margin-left: 0.5rem;
}

.terms-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: var(--accent-amber);
    text-decoration: underline;
}

.terms-footer-note {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    border: 2px solid rgba(255, 107, 53, 0.2);
    text-align: center;
}

.terms-footer-note p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .terms-hero {
        min-height: 40vh;
        padding: 2rem 0;
    }

    .terms-content-section {
        padding: 3rem 0;
    }

    .terms-block {
        padding: 2rem;
    }

    .terms-support-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .terms-hero-content {
        padding: 1.5rem;
    }

    .terms-block {
        padding: 1.5rem;
    }

    .terms-list li {
        padding-left: 1.5rem;
    }

    .terms-footer-note {
        padding: 1.5rem;
    }
}
