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

:root {
    --primary-color: #0a0a0a;
    --secondary-color: #1a1a1a;
    --accent-color: #3b82f6;
    --accent-hover: #60a5fa;
    --accent-light: #93c5fd;
    --accent-dark: #2563eb;
    --text-color: #e0e0e0;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --bg-color: #000000;
    --bg-secondary: #0f0f0f;
    --bg-card: #1a1a1a;
    --border-color: #333333;
    --border-hover: #555555;
    --link-color: #3b82f6;
    --link-hover: #60a5fa;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.7);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.9);
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.4);
    --shadow-glow-strong: 0 0 30px rgba(59, 130, 246, 0.6);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.header {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    color: var(--text-light);
    padding: 1.2rem 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-color);
    animation: headerSlideDown 0.6s ease-out;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.logo a {
    display: block;
    text-decoration: none;
    transition: all 0.3s;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s;
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.6));
    }
}

.logo a:hover .logo-img {
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.8));
    transform: scale(1.05);
    animation: none;
}

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

.nav-list a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s;
    position: relative;
}

.nav-list a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-list a:hover {
    color: var(--accent-color);
    background: rgba(255, 215, 0, 0.1);
}

.nav-list a:hover::before {
    width: 80%;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login,
.btn-register {
    padding: 0.7rem 1.8rem;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.btn-login::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-login:hover::before {
    width: 300px;
    height: 300px;
}

.btn-login:hover {
    background: var(--accent-color);
    color: var(--text-light);
    box-shadow: var(--shadow-lg), var(--shadow-glow-strong);
    transform: translateY(-3px) scale(1.05);
    border-color: var(--accent-light);
}

.btn-register {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 50%, var(--accent-color) 100%);
    background-size: 200% 200%;
    color: var(--text-light);
    animation: gradientShift 3s ease infinite;
    border: 2px solid transparent;
}

.btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-register:hover::before {
    left: 100%;
}

.btn-register:hover {
    background-position: 100% 0;
    box-shadow: var(--shadow-lg), var(--shadow-glow-strong), 0 0 30px rgba(59, 130, 246, 0.6);
    transform: translateY(-3px) scale(1.05);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.menu-toggle {
    display: none;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.menu-toggle:checked ~ .burger-menu span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--accent-light);
}

.menu-toggle:checked ~ .burger-menu span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle:checked ~ .burger-menu span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--accent-light);
}

.main {
    flex: 1;
    padding: 3rem 0;
    background: transparent;
}

.content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    animation: titleFadeIn 0.8s ease-out;
    position: relative;
}

.content h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: titleUnderline 1s ease-out 0.5s forwards;
}

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

@keyframes titleUnderline {
    to {
        width: 100%;
    }
}

.content h2 {
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-color);
    position: relative;
    animation: h2SlideIn 0.8s ease-out;
}

.content h2::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-light));
    animation: h2BorderGlow 2s ease-in-out infinite;
}

@keyframes h2SlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes h2BorderGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
    }
}

.content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.content p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: justify;
}

.content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    animation: leadPulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.content .lead::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    animation: leadShine 3s ease-in-out infinite;
}

@keyframes leadPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    }
}

@keyframes leadShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.content ul, .content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.content a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.content a:hover {
    color: var(--link-hover);
    border-bottom-color: var(--link-hover);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

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

.card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light), transparent);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.card {
    animation: cardFadeIn 0.6s ease-out;
    animation-fill-mode: both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-lg), var(--shadow-glow-strong);
    border-color: var(--accent-color);
}

.card:hover::before {
    transform: scaleX(1);
}

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

.card h3 {
    margin-top: 0;
    color: var(--text-light);
}

.card h3 a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.card h3 a:hover {
    color: var(--accent-color);
}

.card p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-lg), var(--shadow-glow-strong);
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
}

.btn:active {
    transform: translateY(-1px) scale(1.02);
}

.footer {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    color: var(--text-color);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 2px solid var(--accent-color);
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
    margin-left: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.disclaimer {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-banner {
    margin: 2.5rem 0;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    display: block;
    width: 100%;
    min-height: 200px;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s;
    position: relative;
    z-index: 0;
}

.hero-banner:hover img {
    transform: scale(1.02);
}

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

.bonus-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid var(--border-color);
    position: relative;
    animation: bonusFadeIn 0.8s ease-out;
    animation-fill-mode: both;
}

.bonus-item:nth-child(1) { animation-delay: 0.1s; }
.bonus-item:nth-child(2) { animation-delay: 0.2s; }
.bonus-item:nth-child(3) { animation-delay: 0.3s; }

.bonus-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.bonus-item:hover::after {
    opacity: 1;
}

.bonus-item:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: var(--shadow-lg), var(--shadow-glow-strong);
    border-color: var(--accent-color);
}

.bonus-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}

.bonus-item:hover img {
    transform: scale(1.1);
}

.bonus-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: var(--text-light);
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
}

.bonus-item:hover .bonus-text {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.98) 100%);
}

.bonus-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.bonus-text p {
    font-size: 1rem;
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.bonus-text .bonus-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-light);
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
    display: block;
    margin-top: 0.5rem;
    animation: bonusAmountPulse 2s ease-in-out infinite;
}

@keyframes bonusFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px) rotateX(20deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes bonusAmountPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 15px rgba(59, 130, 246, 0.8);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 25px rgba(59, 130, 246, 1);
    }
}

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

.game-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    border: 2px solid var(--border-color);
    position: relative;
}

.game-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.game-item:hover {
    transform: scale(1.12) translateY(-8px) rotateZ(2deg);
    box-shadow: var(--shadow-lg), var(--shadow-glow-strong);
    border-color: var(--accent-color);
    z-index: 10;
}

.game-item:hover::after {
    opacity: 1;
}

.game-item img {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.game-item:hover img {
    transform: scale(1.2);
}

.game-item img {
    width: 100%;
    height: auto;
    display: block;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.provider-logo {
    max-height: 70px;
    width: auto;
    margin: 0 auto;
    opacity: 0.7;
    transition: all 0.3s;
    filter: grayscale(100%);
}

.provider-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.provider-logo-large {
    max-height: 100px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s;
    filter: grayscale(50%);
}

.provider-logo-large:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.bonus-image {
    margin: 3rem 0;
    text-align: center;
    position: relative;
    animation: bonusImageFadeIn 1s ease-out;
}

.bonus-image img {
    max-width: 700px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.bonus-image:hover img {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow-strong);
    transform: scale(1.02);
}

.bonus-image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: var(--text-light);
    text-align: center;
    opacity: 1;
    transition: all 0.4s;
    pointer-events: none;
    width: calc(100% - 2rem);
    max-width: 600px;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    margin: 0;
}

.hero-banner .bonus-image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    margin: 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px);
}

.bonus-image:hover .bonus-image-text {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.hero-banner:hover .bonus-image-text {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.bonus-image-text h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-light);
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8), 0 0 40px rgba(59, 130, 246, 0.6);
}

.bonus-image-text .amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 0 0 30px rgba(59, 130, 246, 1);
    animation: bonusImageAmountGlow 2s ease-in-out infinite;
    display: block;
    margin: 0.5rem 0;
}

.bonus-image-text p {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    color: var(--text-light);
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
}

@keyframes bonusImageFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bonusImageAmountGlow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(59, 130, 246, 1);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 50px rgba(59, 130, 246, 1), 0 0 70px rgba(59, 130, 246, 0.8);
        transform: scale(1.05);
    }
}

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

.slot-item {
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-secondary);
    padding: 0;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid var(--border-color);
    position: relative;
    aspect-ratio: 1 / 1;
    display: block;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.slot-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}

.slot-item:hover {
    transform: translateY(-15px) scale(1.08) rotateY(5deg);
    box-shadow: var(--shadow-lg), var(--shadow-glow-strong);
    border-color: var(--accent-color);
}

.slot-item:hover::before {
    opacity: 1;
}

.slot-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    margin: 0;
    padding: 0;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: brightness(0.9);
    display: block;
    z-index: 0;
}

.slot-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

.slot-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
    padding: 1.5rem 1rem 1rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    box-sizing: border-box;
}

.slot-item:hover .slot-name {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    color: var(--accent-light);
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.8), 0 2px 8px rgba(0, 0, 0, 0.9);
}

.live-providers {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

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

.live-game-item {
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-secondary);
    padding: 1.5rem;
    transition: all 0.3s;
    border: 2px solid var(--border-color);
}

.live-game-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--accent-color);
}

.live-game-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.live-game-item p {
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.mobile-game-item {
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-secondary);
    padding: 1rem;
    transition: all 0.3s;
    border: 2px solid var(--border-color);
}

.mobile-game-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    border-color: var(--accent-color);
}

.mobile-game-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.mobile-game-item p {
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

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

.content {
    animation: fadeIn 0.8s ease-out;
}

.slot-item {
    animation: fadeIn 0.6s ease-out;
    animation-fill-mode: both;
}

.slot-item:nth-child(1) { animation-delay: 0.1s; }
.slot-item:nth-child(2) { animation-delay: 0.2s; }
.slot-item:nth-child(3) { animation-delay: 0.3s; }
.slot-item:nth-child(4) { animation-delay: 0.4s; }
.slot-item:nth-child(5) { animation-delay: 0.5s; }
.slot-item:nth-child(6) { animation-delay: 0.6s; }

.game-item {
    animation: rotateIn 0.8s ease-out;
    animation-fill-mode: both;
}

.game-item:nth-child(1) { animation-delay: 0.1s; }
.game-item:nth-child(2) { animation-delay: 0.2s; }
.game-item:nth-child(3) { animation-delay: 0.3s; }
.game-item:nth-child(4) { animation-delay: 0.4s; }
.game-item:nth-child(5) { animation-delay: 0.5s; }
.game-item:nth-child(6) { animation-delay: 0.6s; }
.game-item:nth-child(7) { animation-delay: 0.7s; }
.game-item:nth-child(8) { animation-delay: 0.8s; }

.provider-logo {
    animation: fadeIn 0.6s ease-out;
    animation-fill-mode: both;
}

.provider-logo:nth-child(1) { animation-delay: 0.05s; }
.provider-logo:nth-child(2) { animation-delay: 0.1s; }
.provider-logo:nth-child(3) { animation-delay: 0.15s; }
.provider-logo:nth-child(4) { animation-delay: 0.2s; }
.provider-logo:nth-child(5) { animation-delay: 0.25s; }
.provider-logo:nth-child(6) { animation-delay: 0.3s; }
.provider-logo:nth-child(7) { animation-delay: 0.35s; }
.provider-logo:nth-child(8) { animation-delay: 0.4s; }
.provider-logo:nth-child(9) { animation-delay: 0.45s; }
.provider-logo:nth-child(10) { animation-delay: 0.5s; }
.provider-logo:nth-child(11) { animation-delay: 0.55s; }
.provider-logo:nth-child(12) { animation-delay: 0.6s; }
.provider-logo:nth-child(13) { animation-delay: 0.65s; }
.provider-logo:nth-child(14) { animation-delay: 0.7s; }
.provider-logo:nth-child(15) { animation-delay: 0.75s; }
.provider-logo:nth-child(16) { animation-delay: 0.8s; }

.content {
    text-align: justify;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: nowrap;
        gap: 1rem;
        position: relative;
    }
    
    .burger-menu {
        display: flex;
        order: 2;
        margin-left: auto;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: var(--shadow-lg);
        border-top: 2px solid var(--accent-color);
        z-index: 999;
        order: 3;
    }
    
    .menu-toggle:checked ~ .nav {
        max-height: 500px;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
    }
    
    .nav-list li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(59, 130, 246, 0.2);
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s, transform 0.3s;
    }
    
    .menu-toggle:checked ~ .nav .nav-list li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-list li:nth-child(1) { transition-delay: 0.05s; }
    .nav-list li:nth-child(2) { transition-delay: 0.1s; }
    .nav-list li:nth-child(3) { transition-delay: 0.15s; }
    .nav-list li:nth-child(4) { transition-delay: 0.2s; }
    .nav-list li:nth-child(5) { transition-delay: 0.25s; }
    .nav-list li:nth-child(6) { transition-delay: 0.3s; }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .nav-list a {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        display: block;
        border-radius: 6px;
        transition: all 0.3s;
    }
    
    .nav-list a:hover {
        background: rgba(59, 130, 246, 0.15);
        padding-left: 1.5rem;
    }
    
    .header-buttons {
        order: 2;
        margin-left: 1rem;
        gap: 0.5rem;
    }
    
    .btn-login,
    .btn-register {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .content {
        padding: 1.5rem;
    }
    
    .content h1 {
        font-size: 1.75rem;
    }
    
    .content h2 {
        font-size: 1.35rem;
    }
    
    .cards-grid,
    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .games-showcase {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1.5rem;
    }
    
    .slot-item {
        aspect-ratio: 1 / 1;
    }
    
    .slot-name {
        opacity: 1;
        transform: translateY(0);
        font-size: 0.85rem;
        padding: 1rem 0.75rem 0.75rem;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .provider-logo {
        max-height: 50px;
    }
    
    .live-providers {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .provider-logo-large {
        max-height: 70px;
    }
    
    .live-games-grid,
    .mobile-games-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .main {
        padding: 2rem 0;
    }
    
    .content {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }
    
    .header-buttons {
        gap: 0.4rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .btn-login,
    .btn-register {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        width: 100%;
        min-width: 80px;
    }
    
    .burger-menu {
        width: 26px;
        height: 20px;
    }
    
    .burger-menu span {
        height: 2.5px;
    }
    
    .nav-list a {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .content h1 {
        font-size: 1.5rem;
    }
    
    .content {
        font-size: 15px;
        padding: 1rem;
    }
    
    .slots-grid,
    .mobile-games-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .slot-item {
        aspect-ratio: 1 / 1;
    }
    
    .slot-name {
        opacity: 1;
        transform: translateY(0);
        font-size: 0.75rem;
        padding: 0.75rem 0.5rem 0.5rem;
    }
}
