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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0f1419;
}

.site-content {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #d1d5db;
}

a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffed4e;
}

.text-gold { color: #ffd700; }
.text-white { color: #ffffff; }
.text-center { text-align: center; }

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    color: #000000;
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #000000;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #000000;
}

.btn-green {
    background: #10b981;
    color: #ffffff;
}

.btn-green:hover {
    background: #059669;
    color: #ffffff;
}

.btn-blue {
    background: #3b82f6;
    color: #ffffff;
}

.btn-blue:hover {
    background: #2563eb;
    color: #ffffff;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.header {
    background: #1f2937;
    border-bottom: 1px solid #374151;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-img {
    height: 2rem;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: #d1d5db;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffd700;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background: #d1d5db;
    margin: 2px 0;
    transition: 0.3s;
}

.header-cta {
    display: none;
    gap: 1rem;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 1rem 0;
    border-top: 1px solid #374151;
}

.nav-mobile.active {
    display: flex;
}

.nav-link-mobile {
    color: #d1d5db;
    padding: 0.5rem 0;
    font-weight: 500;
}

.nav-link-mobile:hover {
    color: #ffd700;
}

.hero {
    position: relative;
    background: linear-gradient(135deg, #0f1419 0%, #1f2937 50%, #7f1d1d 100%);
    padding: 5rem 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-banners-mobile {
    display: flex;
    height: 100%;
}

.hero-banners-desktop {
    display: none;
    height: 100%;
}

.hero-banner-mobile,
.hero-banner-desktop {
    width: 50%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-banner-desktop {
    width: 33.333%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 4xl;
    margin-left: auto;
    margin-right: auto;
}

.hero-license {
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    padding: 1.5rem;
    max-width: 32rem;
    margin: 0 auto 2rem;
}

.hero-license p {
    color: #d1d5db;
    margin-bottom: 0;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.features {
    padding: 5rem 0;
    background: #1f2937;
}

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

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon-gold { background: #ffd700; color: #000000; }
.feature-icon-red { background: #dc2626; color: #ffffff; }
.feature-icon-green { background: #10b981; color: #ffffff; }
.feature-icon-blue { background: #3b82f6; color: #ffffff; }

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #9ca3af;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 4xl;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.bonuses {
    padding: 5rem 0;
    background: #0f1419;
}

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

.bonus-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    color: #ffffff;
}

.bonus-card-gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
}

.bonus-card-red {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.bonus-card-blue {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.bonus-card-purple {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.bonus-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bonus-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bonus-desc {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.bonus-detail {
    font-size: 0.75rem;
    margin-bottom: 0;
}

.games {
    padding: 5rem 0;
    background: #1f2937;
    min-width: 0;
}

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

.category-card {
    background: #374151;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: background-color 0.3s ease;
}

.category-card:hover {
    background: #4b5563;
}

.category-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.category-icon-gold { background: #ffd700; color: #000000; }
.category-icon-red { background: #dc2626; color: #ffffff; }
.category-icon-blue { background: #3b82f6; color: #ffffff; }

.category-card h3 {
    margin-bottom: 1rem;
}

.category-card p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.category-link {
    color: #ffd700;
    font-weight: 600;
}

.category-link:hover {
    color: #ffed4e;
}

.games-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.game-item {
    background: #374151;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.game-item:hover {
    background: #4b5563;
}

.game-item img {
    width: 100%;
    height: 8rem;
    min-height: 8rem;
    object-fit: cover;
    display: block;
    background: #1f2937;
    transition: transform 0.3s ease;
}

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

.game-item h4 {
    padding: 0.75rem;
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 0;
}

.providers-section {
    margin-bottom: 3rem;
    min-width: 0;
}

.providers-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    min-width: 0;
}

@media (max-width: 480px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .providers-section {
        margin-bottom: 2rem;
        overflow: hidden;
        min-width: 0;
    }
    .providers-title {
        font-size: 1.25rem;
        padding: 0 0.25rem;
        margin-bottom: 1rem;
    }
    .providers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }
    .provider-item {
        padding: 0.5rem;
        min-width: 0;
    }
    .provider-item img {
        height: 1.75rem;
        max-width: 100%;
    }
    .provider-item p {
        font-size: 0.65rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

.provider-item {
    background: #374151;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: background-color 0.3s ease;
    min-width: 0;
    overflow: hidden;
}

.provider-item:hover {
    background: #4b5563;
}

.provider-item img {
    height: 2rem;
    width: auto;
    max-width: 100%;
    margin: 0 auto 0.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: block;
}

.provider-item:hover img {
    opacity: 1;
}

.provider-item p {
    font-size: 0.75rem;
    color: #d1d5db;
    margin-bottom: 0;
}

.banking {
    padding: 5rem 0;
    background: #0f1419;
}

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

.payment-methods h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.payment-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #1f2937;
    padding: 1rem;
    border-radius: 0.5rem;
}

.payment-item img {
    width: 2rem;
    height: 2rem;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

.payment-icons img {
    width: 1.5rem;
    height: 1.5rem;
}

.payment-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.payment-item p {
    color: #9ca3af;
    margin-bottom: 0;
}

.banking-info h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.banking-card {
    background: #1f2937;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.banking-card p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.vip-highlight {
    background: linear-gradient(135deg, #ffd700, #dc2626);
    padding: 1rem;
    border-radius: 0.5rem;
    color: #000000;
    margin: 1rem 0;
}

.vip-highlight h4 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.vip-highlight p {
    font-size: 0.875rem;
    margin-bottom: 0;
    color: #000000;
}

.banking-speed {
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 600;
    color: #ffd700;
}

.why-vavada {
    padding: 5rem 0;
    background: #1f2937;
}

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

.why-card {
    background: #374151;
    padding: 2rem;
    border-radius: 0.75rem;
}

.why-card .why-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.why-icon-red { background: #dc2626; color: #ffffff; }
.why-icon-green { background: #10b981; color: #ffffff; }
.why-icon-blue { background: #3b82f6; color: #ffffff; }
.why-icon-purple { background: #8b5cf6; color: #ffffff; }

.why-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.why-card p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.testimonial {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f1419, #7f1d1d);
    text-align: center;
}

.testimonial-card {
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 0.75rem;
    max-width: 4xl;
    margin: 0 auto;
}

.testimonial-card blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.testimonial-card cite {
    color: #ffd700;
    font-weight: 600;
}

.registration {
    padding: 5rem 0;
    background: #1f2937;
}

.registration-form {
    background: #374151;
    padding: 2rem;
    border-radius: 0.75rem;
    max-width: 32rem;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #1f2937;
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 1px #ffd700;
}

.form-checkboxes {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label span {
    font-size: 0.875rem;
    color: #d1d5db;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: center;
    margin-top: 1rem;
}

.faq {
    padding: 5rem 0;
    background: #0f1419;
}

.faq-list {
    max-width: 4xl;
    margin: 0 auto;
}

.faq-item {
    background: #1f2937;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #374151;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #ffd700;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: #d1d5db;
    margin-bottom: 0;
}

.support-section {
    text-align: center;
    margin-top: 3rem;
}

.support-section p {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.support-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer {
    background: #000000;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

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

.footer-title {
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer-responsible {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
}

.footer-responsible p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-responsible a {
    color: #ffd700;
}

.footer-responsible a:hover {
    color: #ffed4e;
}

.mobile-cta {
    display: none;
}

@media (max-width: 767px) {
    .mobile-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100vw;
        background: #ffd700;
        padding: 0.875rem 1rem;
        padding-bottom: calc(0.875rem + env(safe-area-inset-bottom, 0));
        z-index: 99999;
        box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    .mobile-cta a {
        display: block;
        text-align: center;
        color: #000000;
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
        padding: 0.25rem 0;
    }
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-showcase {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .providers-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    
    .support-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    body {
        padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0));
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .header-cta {
        display: flex;
    }
    
    .hero-banners-mobile {
        display: none;
    }
    
    .hero-banners-desktop {
        display: flex;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .bonus-cards {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .game-categories {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .banking-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .providers-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    
    .mobile-cta {
        display: none;
    }
}

@media (min-width: 1024px) {
    .logo-img {
        height: 2.5rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3.75rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

html {
    scroll-behavior: smooth;
}

img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}