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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0a0a15;
    color: #e8e8e8;
    line-height: 1.7;
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header Section */
.top-bar {
    background: #151520;
    padding: 25px 0;
    border-bottom: 3px solid #e74c3c;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 3px 15px rgba(0,0,0,0.4);
}

.logo-area {
    text-align: center;
    margin-bottom: 20px;
}

.logo-area h1 {
    font-size: 2.3rem;
    background: linear-gradient(120deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.tagline {
    color: #a8a8a8;
    font-size: 1.05rem;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 10px 22px;
    background: #1e1e2e;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid transparent;
}

.nav-link:hover {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    transform: translateY(-3px);
}

/* Alert Banner */
.alert-banner {
    margin: 30px 0;
}

.alert-content {
    background: linear-gradient(135deg, rgba(231,76,60,0.12), rgba(255,177,66,0.12));
    border: 2px solid #ffb142;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-alert {
    font-size: 2.8rem;
}

.alert-txt h3 {
    color: #ffb142;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.alert-txt p {
    color: #c0c0c0;
}

/* Intro Block */
.intro-block {
    margin: 50px 0;
}

.intro-block h2 {
    text-align: center;
    font-size: 2.1rem;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 35px;
}

.benefits-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.benefit-box {
    background: #1a1a28;
    padding: 28px;
    border-radius: 14px;
    text-align: center;
    border: 2px solid #2a2a3a;
    transition: 0.3s;
}

.benefit-box:hover {
    transform: translateY(-7px);
    border-color: #4ecdc4;
    box-shadow: 0 12px 35px rgba(78,205,196,0.25);
}

.benefit-ico {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.benefit-box h4 {
    color: #4ecdc4;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-box p {
    color: #b0b0b0;
}

.notice-important {
    background: linear-gradient(135deg, rgba(231,76,60,0.18), rgba(189,0,255,0.18));
    border-left: 5px solid #e74c3c;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.notice-important p {
    color: #fff;
}

/* Platforms Listing */
.platforms-listing {
    margin: 60px 0;
}

.platforms-listing h2 {
    text-align: center;
    font-size: 2.4rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.section-desc {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.platform-item {
    background: #1a1a28;
    border-radius: 18px;
    padding: 28px;
    position: relative;
    border: 2px solid #2a2a3a;
    transition: 0.35s;
}

.platform-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(102,126,234,0.28);
    border-color: #4ecdc4;
}

.platform-item.premium {
    border: 3px solid #ffd93d;
    box-shadow: 0 12px 35px rgba(255,217,61,0.22);
}

.badge-top {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: #fff;
    padding: 8px 18px;
    border-radius: 22px;
    font-weight: 700;
    font-size: 0.88rem;
}

.platform-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.platform-mark {
    width: 115px;
    height: 58px;
    background: linear-gradient(135deg, #e74c3c, #4ecdc4);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mark-txt {
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.platform-score {
    text-align: right;
}

.score-stars {
    color: #ffd93d;
    font-size: 1.15rem;
    display: block;
}

.score-num {
    color: #b0b0b0;
    font-size: 0.9rem;
    font-weight: 600;
}

.platform-item h3 {
    color: #4ecdc4;
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.platform-subtitle {
    color: #b0b0b0;
    margin-bottom: 20px;
}

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.tag {
    padding: 7px 14px;
    border-radius: 18px;
    font-size: 0.87rem;
    font-weight: 600;
}

.tag-sport {
    background: rgba(78,205,196,0.18);
    color: #4ecdc4;
    border: 1px solid #4ecdc4;
}

.tag-poker {
    background: rgba(231,76,60,0.18);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.tag-horse {
    background: rgba(255,217,61,0.18);
    color: #ffd93d;
    border: 1px solid #ffd93d;
}

.platform-points {
    margin: 20px 0;
}

.point {
    color: #b0b0b0;
    padding: 8px 0;
    font-size: 0.95rem;
}

.offer-box {
    background: linear-gradient(135deg, rgba(102,126,234,0.18), rgba(118,75,162,0.18));
    padding: 15px;
    border-radius: 11px;
    margin: 15px 0;
    text-align: center;
    border: 1px solid rgba(102,126,234,0.3);
}

.offer-box strong {
    color: #ffd93d;
}

.license-badge {
    text-align: center;
    margin-bottom: 20px;
}

.license-badge small {
    color: #6bcf7f;
    background: rgba(107,207,127,0.12);
    padding: 9px 16px;
    border-radius: 22px;
    display: inline-block;
    border: 1px solid rgba(107,207,127,0.3);
}

.btn-main {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: #fff;
    text-decoration: none;
    border-radius: 32px;
    font-weight: 700;
    text-align: center;
    transition: 0.3s;
}

.btn-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(245,87,108,0.45);
}

/* Legal Info */
.legal-info {
    margin: 60px 0;
    padding: 40px 0;
    background: #151520;
    border-radius: 18px;
}

.legal-info h2 {
    text-align: center;
    font-size: 2.1rem;
    color: #4ecdc4;
    margin-bottom: 35px;
}

.legal-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.legal-col {
    background: #1a1a28;
    padding: 28px;
    border-radius: 14px;
    border: 2px solid #2a2a3a;
}

.legal-col.authorized {
    border-left: 5px solid #6bcf7f;
}

.legal-col.forbidden {
    border-left: 5px solid #e74c3c;
}

.legal-col h3 {
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.legal-col ul {
    list-style: none;
    padding: 0;
}

.legal-col li {
    padding: 10px 0;
    color: #b0b0b0;
    border-bottom: 1px solid #2a2a3a;
}

.legal-col li:last-child {
    border-bottom: none;
}

.info-note {
    background: linear-gradient(135deg, rgba(78,205,196,0.12), rgba(102,126,234,0.12));
    border: 2px solid #4ecdc4;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}

.info-note p {
    color: #fff;
}

/* Guides Preview */
.guides-preview {
    margin: 60px 0;
}

.guides-preview h2 {
    text-align: center;
    font-size: 2.1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 35px;
}

.guides-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.guide-block {
    background: #1a1a28;
    padding: 28px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    border: 2px solid #2a2a3a;
    text-align: center;
}

.guide-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(102,126,234,0.28);
    border-color: #e74c3c;
}

.guide-ico {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.guide-block h4 {
    color: #4ecdc4;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.guide-block p {
    color: #b0b0b0;
}

/* Responsible Play */
.responsible-play {
    margin: 60px 0;
    background: #151520;
    padding: 40px;
    border-radius: 18px;
    border: 3px solid #e74c3c;
}

.responsible-play h2 {
    text-align: center;
    font-size: 2.1rem;
    color: #e74c3c;
    margin-bottom: 35px;
}

.responsible-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.responsible-left h4,
.responsible-right h4 {
    color: #4ecdc4;
    margin-bottom: 18px;
    font-size: 1.4rem;
}

.responsible-left ul {
    list-style: none;
    padding: 0;
}

.responsible-left li {
    padding: 12px 0;
    color: #b0b0b0;
    border-bottom: 1px solid #2a2a3a;
    padding-left: 22px;
    position: relative;
}

.responsible-left li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6bcf7f;
    font-weight: bold;
}

.help-resources {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 18px;
}

.help-link {
    background: #1a1a28;
    padding: 15px;
    border-radius: 11px;
    text-decoration: none;
    color: #4ecdc4;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #4ecdc4;
    transition: 0.3s;
}

.help-link:hover {
    background: #4ecdc4;
    color: #fff;
    transform: translateX(6px);
}

/* Footer */
.bottom-bar {
    background: #151520;
    margin-top: 60px;
    padding: 40px 0 15px;
    border-top: 3px solid #e74c3c;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h4 {
    color: #4ecdc4;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.footer-col p,
.footer-col ul {
    color: #b0b0b0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin: 8px 0;
}

.footer-col a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #4ecdc4;
}

.footer-end {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #2a2a3a;
}

.footer-end p {
    color: #787878;
    margin: 8px 0;
}

.warning-txt {
    color: #ffb142 !important;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-area h1 {font-size: 1.9rem;}
    .tagline {font-size: 0.95rem;}
    .nav-menu {gap: 12px;}
    .nav-link {padding: 8px 16px; font-size: 0.9rem;}
    .alert-content {flex-direction: column; text-align: center;}
    .platforms-grid {grid-template-columns: 1fr;}
    .legal-cols {grid-template-columns: 1fr;}
    .guides-row {grid-template-columns: 1fr;}
    .responsible-content {grid-template-columns: 1fr;}
    .footer-cols {grid-template-columns: 1fr; text-align: center;}
}
