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

:root {
    --primary-color: #FFD700;
    --secondary-color: #1a1a2e;
    --accent-color: #16213e;
    --success-color: #00d9ff;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --bg-dark: #0f0f1e;
    --bg-card: #1e1e30;
    --border-color: #2a2a3e;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

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

.qx7k9-fixed {
    overflow: hidden;
}

.qx7k9-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.a9mx4-header {
    background: var(--secondary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.k7wn2-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

.m6kx9-logo-link {
    display: block;
}

.r2tw7-logo-img {
    display: block;
    height: auto;
}

.w9ln4-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.t5kp3-nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.r4nx2-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.r4nx2-nav-link:hover {
    color: var(--primary-color);
    background: rgba(255, 215, 0, 0.1);
}

.q7lm9-nav-icon {
    flex-shrink: 0;
}

.n6wp9-reviews-count {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
}

.b8qx2-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.k4mw7-btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

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

.k4mw7-btn-login:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.k4mw7-btn-register {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.k4mw7-btn-register:hover {
    background: #ffc700;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.t9lp6-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.m3kx5-burger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.t9lp6-active .m3kx5-burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.t9lp6-active .m3kx5-burger-line:nth-child(2) {
    opacity: 0;
}

.t9lp6-active .m3kx5-burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.v3mn2-main {
    flex: 1;
}

.p8wd4-hero {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.j2kl9-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/cryptoboss-hero.png') center/cover no-repeat;
    z-index: 0;
}

.j2kl9-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.95) 0%, rgba(30, 30, 48, 0.9) 100%);
}

.r4mt7-hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 30px;
}

.w9pk3-casino-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.m2vb6-card-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 25px;
    align-items: center;
    margin-bottom: 25px;
}

.h7qw2-logo {
    border-radius: 12px;
}

.k5dt9-rating-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.f3yn8-rating-stars {
    display: flex;
    align-items: center;
    gap: 12px;
}

.b2lt6-stars {
    color: var(--primary-color);
    font-size: 28px;
    letter-spacing: 3px;
}

.x9cp4-rating-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.t8wm5-reviews-count {
    color: var(--text-secondary);
    font-size: 14px;
}

.n6jk2-bonus-main {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
}

.q1xp7-bonus-title {
    font-size: 18px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 5px;
}

.a8nv3-bonus-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.y7dm4-card-actions {
    display: flex;
    gap: 15px;
}

.c9tw6-btn {
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
    text-align: center;
}

.c9tw6-btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.c9tw6-btn-primary:hover {
    background: #ffc700;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.l2kp8-btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.l2kp8-btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.e5nx9-rating-distribution {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.u4km7-dist-title {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.p6wt2-dist-item {
    display: grid;
    grid-template-columns: 100px 1fr 60px;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.d3yq5-stars {
    color: var(--primary-color);
    font-size: 18px;
}

.h9lv4-progress-bar {
    background: var(--accent-color);
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.k2nm8-progress {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--success-color) 100%);
    height: 100%;
    border-radius: 5px;
    transition: width 0.5s ease;
}

.r7jx3-count {
    text-align: right;
    font-weight: 600;
    color: var(--text-secondary);
}

.g8qx2-bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.v5mt9-bonus-card {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.v5mt9-bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.n3wp7-bonus-icon {
    font-size: 40px;
}

.j9rv2-bonus-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.t7xm4-bonus-desc {
    color: var(--text-secondary);
    font-size: 14px;
}

.w2np8-btn-small {
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
}

.w2np8-btn-small:hover {
    background: #ffc700;
    transform: scale(1.05);
}

.m7qt5-pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.k3xw9-pros,
.k3xw9-cons {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--border-color);
}

.y6np2-pc-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.r8lm4-pc-list {
    list-style: none;
}

.d5kv7-pro-item,
.x2qp9-con-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    line-height: 1.5;
}

.d5kv7-pro-item:last-child,
.x2qp9-con-item:last-child {
    border-bottom: none;
}

.d5kv7-pro-item {
    color: #4ade80;
}

.x2qp9-con-item {
    color: #f87171;
}

.t4mn7-leave-review {
    padding: 60px 0;
    background: var(--bg-dark);
}

.w6lk3-review-bonus-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.p9xv2-banner-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
    align-items: center;
}

.n4mt8-banner-icon {
    font-size: 50px;
}

.j2lp9-banner-title {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.m5qt4-banner-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.v8nx3-btn-bonus {
    padding: 14px 28px;
    background: white;
    color: #764ba2;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.v8nx3-btn-bonus:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.k9wr2-review-form-wrapper {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.b3mp7-form-title,
.b3mp7-section-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-align: center;
}

.l6tx9-review-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.y4nk8-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.p2mv6-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.w7lq3-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.r9km4-input,
.n8qw5-textarea {
    background: var(--accent-color);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.r9km4-input:focus,
.n8qw5-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.n8qw5-textarea {
    resize: vertical;
    min-height: 120px;
}

.d5wx8-ratings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.k9pm2-stars-input {
    display: flex;
    gap: 5px;
    font-size: 28px;
    cursor: pointer;
}

.k9pm2-stars-input span {
    color: var(--border-color);
    transition: all 0.2s ease;
}

.k9pm2-stars-input span.k9pm2-filled,
.k9pm2-stars-input span.k9pm2-hover {
    color: var(--primary-color);
}

.m4vx7-btn-submit {
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
}

.m4vx7-btn-submit:hover {
    background: #ffc700;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.x6lp9-success-message {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 20px;
}

.k2wm7-success-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.v9nt4-success-title {
    font-size: 28px;
    margin-bottom: 10px;
    color: white;
}

.r3xl8-success-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.q7nx4-user-reviews {
    padding: 60px 0;
    background: var(--bg-dark);
}

.mb9kx3-reviews-container {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.mb4wp7-review-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mb4wp7-review-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.mb2lx9-review-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    margin-bottom: 20px;
    align-items: start;
}

.mb8nv4-author-info {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
}

.mb6kw2-avatar {
    border-radius: 50%;
    object-fit: cover;
}

.mb9lp5-author {
    font-size: 18px;
    color: var(--text-primary);
    display: block;
}

.mb7kx4-country {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 14px;
}

.mb5nw8-date {
    color: var(--text-secondary);
    font-size: 14px;
}

.mb2qx6-rating {
    text-align: right;
}

.mb8lv3-rating-display {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.mb4kw9-rating-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.mb6mx2-stars {
    font-size: 20px;
}

.mb3lp7-star {
    color: var(--border-color);
}

.mb3lp7-star.mb9nx4-filled {
    color: var(--primary-color);
}

.mb7kw5-details-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.mb7kw5-details-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.mb5qx8-detailed-ratings {
    background: var(--accent-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.mb2lw6-ratings-grid {
    display: grid;
    gap: 12px;
}

.mb9kp4-rating-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 15px;
    align-items: center;
}

.mb3mx5-param {
    color: var(--text-secondary);
    font-size: 14px;
}

.mb7lv9-stars-small {
    font-size: 16px;
}

.mb7lv9-stars-small span {
    color: var(--border-color);
}

.mb7lv9-stars-small span.mb4nx2-filled {
    color: var(--primary-color);
}

.mb8kw3-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.mb6lx7-source {
    margin-bottom: 15px;
    font-size: 14px;
}

.mb2mv9-source-label {
    color: var(--text-secondary);
}

.mb4kp8-source-link {
    color: var(--success-color);
    text-decoration: none;
}

.mb4kp8-source-link:hover {
    text-decoration: underline;
}

.mb3lw9-body {
    margin-bottom: 20px;
}

.mb5kx6-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

.mb5kx6-text.mb9lp2-truncated {
    max-height: 100px;
    overflow: hidden;
    position: relative;
}

.mb5kx6-text.mb9lp2-truncated::after {
    content: '...';
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--bg-card);
    padding-left: 10px;
}

.mb2nx7-expand {
    background: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.mb2nx7-expand:hover {
    color: #ffc700;
}

.mb8qx4-pros-cons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.mb3lv5-pc-title {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.mb9mx3-pc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mb4wp6-pro-item {
    color: #4ade80;
    font-size: 14px;
}

.mb7nx9-con-item {
    color: #f87171;
    font-size: 14px;
}

.mb5lx8-actions {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.mb2kw4-votes {
    display: flex;
    gap: 10px;
}

.mb9lp7-vote-btn {
    background: var(--accent-color);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mb9lp7-vote-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.mb9lp7-vote-btn.mb9lp7-voted {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.mb4lw9-reply-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: end;
}

.mb4lw9-reply-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.mb7kx3-reply-form {
    margin-top: 20px;
    padding: 20px;
    background: var(--accent-color);
    border-radius: 12px;
}

.mb2nv8-textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px;
    border-radius: 8px;
    font-family: inherit;
    resize: vertical;
}

.mb5lp6-reply-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.mb9kw4-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mb3mx8-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.mb3mx8-primary:hover {
    background: #ffc700;
}

.mb7lx2-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.mb7lx2-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.w9lk6-faq {
    padding: 60px 0;
    background: var(--bg-dark);
}

.t5mx9-faq-list {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.p8nw3-faq-item {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.r2kv7-faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 20px 25px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.r2kv7-faq-question::after {
    content: '+';
    font-size: 28px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.r2kv7-faq-question.r2kv7-active::after {
    transform: rotate(45deg);
}

.r2kv7-faq-question:hover {
    background: var(--accent-color);
}

.m6lt4-faq-answer {
    padding: 0 25px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

.y4kx8-content-section {
    padding: 60px 0;
    background: var(--bg-dark);
}

.n7mw2-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.p3lt9-article-content {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
}

.p3lt9-article-content h1 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.p3lt9-article-content h2 {
    font-size: 28px;
    margin: 30px 0 20px;
    color: var(--text-primary);
}

.p3lt9-article-content h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: var(--text-primary);
}

.p3lt9-article-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

.p3lt9-article-content ul,
.p3lt9-article-content ol {
    margin: 20px 0;
    padding-left: 30px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.p3lt9-article-content li {
    margin-bottom: 10px;
}

.p3lt9-article-content table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
    background: var(--accent-color);
    border-radius: 12px;
    overflow: hidden;
}

.p3lt9-article-content th,
.p3lt9-article-content td {
    padding: 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.p3lt9-article-content th {
    background: var(--secondary-color);
    color: var(--text-primary);
    font-weight: 600;
}

.p3lt9-article-content td {
    color: var(--text-secondary);
}

.p3lt9-article-content a {
    color: var(--success-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.p3lt9-article-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.v6nx4-author-info {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.k2mw8-author-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.r9lp5-author-photo {
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.t4kx7-author-name {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.m8wq3-author-role {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 600;
}

.n5lv9-author-bio {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.w7kp2-author-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.x3nm9-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent-color);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.x3nm9-social-link:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.w7nx2-footer {
    background: var(--secondary-color);
    padding: 50px 0 30px;
    margin-top: auto;
}

.k4mp9-footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.t6nw4-footer-logo {
    margin-bottom: 15px;
}

.m9kv7-footer-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.p2lw6-footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.v5kx9-footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.n3mw8-footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.n3mw8-footer-link:hover {
    color: var(--primary-color);
}

.x7kw2-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.q9lm5-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.b4nx7-contact-icon {
    flex-shrink: 0;
}

.t3mx7-trust-logos {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.w6kp4-logos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

.r9lv2-trust-logo {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.r9lv2-trust-logo:hover {
    opacity: 1;
}

.m5nx8-payment-methods {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.k7wp3-payments-img {
    max-width: 100%;
    height: auto;
    opacity: 0.8;
}

.n8lx4-footer-bottom {
    text-align: center;
}

.p6kw9-legal-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.r4mx7-copyright,
.t9lp2-disclaimer,
.v3nx6-license {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

.j8nx5-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    border-top: 2px solid var(--primary-color);
}

.m3kw9-widget-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
}

.t2nx8-widget-title {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.k6mw3-widget-bonus {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.v9lx2-widget-btn {
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.v9lx2-widget-btn:hover {
    background: #ffc700;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.pietfd {
    --pietfd-bg: #0f0f1e;
    --pietfd-surface: #1e1e30;
    --pietfd-surface-2: #16213e;
    --pietfd-border: #2a2a3e;
    --pietfd-primary: #ffd700;
    --pietfd-primary-2: #ffc700;
    --pietfd-accent: #00d9ff;
    --pietfd-text: #ffffff;
    --pietfd-text-2: #b8b8b8;
    --pietfd-radius: 22px;
    --pietfd-radius-sm: 14px;
    --pietfd-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    max-width: 1100px;
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.98) 0%, rgba(15, 15, 30, 0.98) 100%);
    border: 1px solid var(--pietfd-border);
    border-radius: var(--pietfd-radius);
    box-shadow: var(--pietfd-shadow);
    color: var(--pietfd-text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.75;
    overflow: hidden;
}

.pietfd * {
    box-sizing: border-box;
}

.pietfd h1,
.pietfd h2,
.pietfd h3 {
    color: var(--pietfd-text);
    font-weight: 800;
    line-height: 1.22;
}

.pietfd h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 24px;
    color: var(--pietfd-primary);
    letter-spacing: -0.03em;
}

.pietfd h2 {
    font-size: clamp(1.35rem, 2.4vw, 1.95rem);
    margin: 38px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--pietfd-border);
}

.pietfd h3 {
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    margin: 28px 0 14px;
    color: var(--pietfd-accent);
}

.pietfd p {
    margin: 0 0 18px;
    font-size: 1rem;
    color: var(--pietfd-text-2);
}

.pietfd > p:first-of-type {
    padding: 18px 20px;
    border: 1px solid rgba(255, 215, 0, 0.16);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(0, 217, 255, 0.05) 100%);
    color: #f1f3f7;
}

.pietfd ul,
.pietfd ol {
    margin: 0 0 22px;
    padding: 0;
}

.pietfd ul li,
.pietfd ol li {
    position: relative;
    list-style: none;
    margin-bottom: 12px;
    padding: 14px 16px 14px 48px;
    background: var(--pietfd-surface);
    border: 1px solid var(--pietfd-border);
    border-radius: var(--pietfd-radius-sm);
    color: var(--pietfd-text-2);
}

.pietfd ul li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 19px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pietfd-primary) 0%, var(--pietfd-accent) 100%);
    box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.08);
}

.pietfd ol {
    counter-reset: pietfd-counter;
}

.pietfd ol li::before {
    counter-increment: pietfd-counter;
    content: counter(pietfd-counter);
    position: absolute;
    left: 14px;
    top: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--pietfd-primary) 0%, var(--pietfd-primary-2) 100%);
    color: #101010;
    font-size: 0.78rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pietfd a {
    color: var(--pietfd-accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    word-break: break-word;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.pietfd a:hover {
    color: var(--pietfd-primary);
}

.pietfd strong {
    color: var(--pietfd-text);
    font-weight: 800;
}

.pietfd h2 + p,
.pietfd h3 + p {
    margin-top: 0;
}

.pietfd p + ul,
.pietfd p + ol {
    margin-top: 10px;
}

.pietfd h2:nth-of-type(1),
.pietfd h2:nth-of-type(4),
.pietfd h2:nth-of-type(8),
.pietfd h2:nth-of-type(10) {
    position: relative;
}

.pietfd h2:nth-of-type(1)::before,
.pietfd h2:nth-of-type(4)::before,
.pietfd h2:nth-of-type(8)::before,
.pietfd h2:nth-of-type(10)::before {
    content: "";
    display: inline-block;
    width: 42px;
    height: 4px;
    margin-right: 12px;
    vertical-align: middle;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pietfd-primary) 0%, var(--pietfd-accent) 100%);
}

.pietfd > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .pietfd {
        margin: 28px 20px;
        padding: 32px 24px;
        border-radius: 20px;
    }

    .pietfd h2 {
        margin-top: 32px;
    }

    .pietfd > p:first-of-type {
        padding: 16px 18px;
    }
}

@media (max-width: 767px) {
    .pietfd {
        margin: 20px 16px;
        padding: 24px 18px;
        border-radius: 18px;
        line-height: 1.68;
    }

    .pietfd h1 {
        font-size: 1.7rem;
        margin-bottom: 18px;
    }

    .pietfd h2 {
        font-size: 1.28rem;
        margin: 28px 0 14px;
        padding-bottom: 10px;
    }

    .pietfd h3 {
        font-size: 1.04rem;
        margin: 22px 0 12px;
    }

    .pietfd p {
        font-size: 0.96rem;
        margin-bottom: 16px;
    }

    .pietfd ul li,
    .pietfd ol li {
        padding: 12px 14px 12px 42px;
        margin-bottom: 10px;
        font-size: 0.95rem;
    }

    .pietfd ul li::before {
        left: 15px;
        top: 17px;
        width: 9px;
        height: 9px;
    }

    .pietfd ol li::before {
        left: 11px;
        top: 11px;
        width: 22px;
        height: 22px;
        font-size: 0.72rem;
    }

    .pietfd h2:nth-of-type(1)::before,
    .pietfd h2:nth-of-type(4)::before,
    .pietfd h2:nth-of-type(8)::before,
    .pietfd h2:nth-of-type(10)::before {
        width: 30px;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .pietfd {
        margin: 16px 12px;
        padding: 20px 14px;
        border-radius: 16px;
    }

    .pietfd h1 {
        font-size: 1.45rem;
    }

    .pietfd h2 {
        font-size: 1.12rem;
    }

    .pietfd h3 {
        font-size: 0.98rem;
    }

    .pietfd p,
    .pietfd ul li,
    .pietfd ol li {
        font-size: 0.92rem;
    }

    .pietfd > p:first-of-type {
        padding: 14px 14px;
        border-radius: 14px;
    }
}