/* CSS Reset и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0090FF 0%, #1A64FC 50%, #1e3a8a 100%);
    min-height: 100vh;
    color: #F9FAFA;
    line-height: 1.6;
}

.go-ref {
    cursor: pointer;
}

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

/* Header */
.header {
    background: rgba(26, 100, 252, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #F9FAFA;
}

.nav {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: rgba(249, 250, 250, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.header-right {
    display: flex;
    gap: 0.75rem;
}

.btn-login {
    padding: 0.5rem 1rem;
    color: #F9FAFA;
    border: 1px solid rgba(249, 250, 250, 0.3);
    border-radius: 0.375rem;
    background: transparent;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #F9FAFA;
    color: #1A64FC;
}

.btn-register {
    padding: 0.5rem 1rem;
    background: #f97316;
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-register:hover {
    background: #ea580c;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 0.75rem 0;
}

.breadcrumbs-text {
    font-size: 0.75rem;
    color: rgba(249, 250, 250, 0.6);
}

/* Hero Section */
.hero {
    padding: 2rem 0;
}

.hero-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .hero-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.hero-title h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #F9FAFA;
    line-height: 1.2;
}

.bonus-block {
    background: linear-gradient(135deg, #0090FF, #1A64FC);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.bonus-title {
    color: #F9FAFA;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.bonus-amount {
    color: #F9FAFA;
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.bonus-description {
    color: rgba(249, 250, 250, 0.9);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.bonus-btn {
    background: #f97316;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.bonus-btn:hover {
    background: #ea580c;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-description {
    color: rgba(249, 250, 250, 0.8);
    max-width: 64rem;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-card {
    background: rgba(249, 250, 250, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 250, 250, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
}

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

.feature-title {
    color: #F9FAFA;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.feature-description {
    color: rgba(249, 250, 250, 0.6);
    font-size: 0.75rem;
}

/* About Section */
.about {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.app-preview {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.app-preview-content {
    position: relative;
    z-index: 10;
}

.app-logo {
    color: white;
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.app-feature {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 1rem;
    color: white;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.app-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 4rem;
    height: 4rem;
    background: #f97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.about-content h2 {
    color: #F9FAFA;
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: rgba(249, 250, 250, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-info {
    color: #F9FAFA;
    font-weight: 500;
}

/* Casino Info Table */
.casino-info {
    padding: 2rem 0;
}

.table-wrapper {
    background: rgba(249, 250, 250, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 250, 250, 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table thead tr {
    background: rgba(26, 100, 252, 0.3);
    border-bottom: 1px solid rgba(249, 250, 250, 0.1);
}

.info-table th,
.info-table td {
    padding: 1rem;
    text-align: left;
}

.info-table th {
    color: #F9FAFA;
    font-weight: 500;
}

.info-table td {
    color: rgba(249, 250, 250, 0.9);
    border-bottom: 1px solid rgba(249, 250, 250, 0.05);
}

.info-table tr:last-child td {
    border-bottom: none;
}

/* Legal Section */
.legal {
    padding: 4rem 0;
}

.legal h2 {
    color: #F9FAFA;
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.legal p {
    color: rgba(249, 250, 250, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.legal strong {
    color: #F9FAFA;
}

/* Registration Section */
.registration {
    padding: 4rem 0;
}

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

.registration-content h2 {
    color: #F9FAFA;
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.registration-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: rgba(249, 250, 250, 0.9);
}

.text-block {
    line-height: 1.6;
}

.text-block strong {
    color: #F9FAFA;
}

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

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    background: #1A64FC;
    color: #F9FAFA;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content {
    line-height: 1.6;
}

.step-content strong {
    color: #F9FAFA;
}

.note {
    font-size: 0.875rem;
    color: rgba(249, 250, 250, 0.8);
}

/* Registration Visual */
.registration-visual {
    position: relative;
}

.process-block {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.process-title {
    color: white;
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 1rem;
    color: white;
    font-size: 0.875rem;
}

/* Final Section */
.final {
    padding: 4rem 0;
    text-align: center;
}

.final p {
    color: rgba(249, 250, 250, 0.9);
    max-width: 64rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: rgba(26, 100, 252, 0.3);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(249, 250, 250, 0.1);
}

.footer-content {
    padding: 2rem 0;
    text-align: center;
}

.footer-title {
    color: #F9FAFA;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(249, 250, 250, 0.6);
    font-size: 0.875rem;
    max-width: 32rem;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .registration-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title h1 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        padding: 0 0.5rem;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-title h1 {
        font-size: 1.75rem;
    }

    .bonus-title {
        font-size: 1rem;
    }

    .bonus-amount {
        font-size: 1.5rem;
    }
}
