html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,*:after,*:before {
    box-sizing: border-box;
}

body {
    background: #1a1a2e;
    font-family: 'Arial', sans-serif;
}

.promo-container {
    max-width: 1400px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.promo-card {
    background: linear-gradient(135deg, #2d2d44 0%, #1a1a2e 100%);
    border-radius: 16px;
    padding: 24px 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(40px, -40px);
}

.card-header {
    margin-bottom: 12px;
}

.card-title {
    color: #ffd700;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.card-amount {
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 4px;
}

.card-subtitle {
    color: #ffd700;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
}

.card-description {
    color: #cccccc;
    font-size: 14px;
    margin: 8px 0;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.sign-up-btn {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #1a1a2e;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.sign-up-btn:hover {
    background: linear-gradient(135deg, #00cc6a 0%, #00aa55 100%);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.card-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #ffd700;
}

.floating-coins {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
}

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

/* Мобільні пристрої */
@media (max-width: 768px) {
    .promo-container {
        padding: 0 10px;
    }

    .promo-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 20px 0;
        -webkit-overflow-scrolling: touch;
    }

    .promo-card {
        min-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
        margin-right: 4px;
    }

    .promo-grid::-webkit-scrollbar {
        height: 4px;
    }

    .promo-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }

    .promo-grid::-webkit-scrollbar-thumb {
        background: #ffd700;
        border-radius: 2px;
    }

    .card-amount {
        font-size: 24px;
    }

    .card-subtitle {
        font-size: 16px;
    }
}

/* Планшети */
@media (min-width: 769px) and (max-width: 1024px) {
    .promo-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 20px 0;
        -webkit-overflow-scrolling: touch;
    }

    .promo-card {
        min-width: 320px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .promo-grid::-webkit-scrollbar {
        height: 6px;
    }

    .promo-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }

    .promo-grid::-webkit-scrollbar-thumb {
        background: #ffd700;
        border-radius: 3px;
    }
}

/* Особливі стилі для різних карток */
.promo-card:nth-child(1) {
    background: linear-gradient(135deg, #ff6b6b 0%, #d63031 100%);
}

.promo-card:nth-child(2) {
    background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%);
    color: #1a1a2e;
}

.promo-card:nth-child(2) .card-title,
.promo-card:nth-child(2) .card-subtitle {
    color: #1a1a2e;
}

.promo-card:nth-child(3) {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
}

.promo-card:nth-child(4) {
    background: linear-gradient(135deg, #6c5ce7 0%, #5f3dc4 100%);
}

.promo-card:nth-child(5) {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
}

.promo-card:nth-child(6) {
    background: linear-gradient(135deg, #00cec9 0%, #00b894 100%);
}

.loyalty-container {
    position: relative;
    padding: 30px 20px;
    height: 450px;
    display: flex;
    align-items: center;
    overflow: visible;
    margin-bottom: 40px;
}

.content-wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    height: 100%;
}

.text-content {
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffd700 0%, #ffab00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-subtitle {
    font-size: 1rem;
    color: #b8b8cc;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #1a1a2e;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
    margin-bottom: 20px;
    align-self: flex-start;
}

.cta-button:hover {
    background: linear-gradient(135deg, #00cc6a 0%, #00aa55 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.cta-button::after {
    content: '→';
    margin-left: 12px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover::after {
    transform: translateX(5px);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(10px);
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-icon.missions {
    background: linear-gradient(135deg, #ff6b6b 0%, #d63031 100%);
}

.feature-icon.wheel {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
}

.feature-icon.tournaments {
    background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%);
}

.feature-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: #ffffff;
}

.feature-content p {
    color: #b8b8cc;
    line-height: 1.4;
    font-size: 0.85rem;
}

.visual-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.wheel-container {
    position: relative;
    width: 280px;
    height: 280px;
    animation: float 6s ease-in-out infinite;
}

.wheel-of-fortune {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
            from 0deg,
            #ff6b6b 0deg 60deg,
            #ffd700 60deg 120deg,
            #00b894 120deg 180deg,
            #6c5ce7 180deg 240deg,
            #fd79a8 240deg 300deg,
            #00cec9 300deg 360deg
    );
    position: relative;
    border: 8px solid #ffd700;
    box-shadow:
            0 0 50px rgba(255, 215, 0, 0.5),
            inset 0 0 30px rgba(0, 0, 0, 0.3);
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.wheel-symbols {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.symbol {
    position: absolute;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.symbol:nth-child(1) { top: 10%; left: 45%; }
.symbol:nth-child(2) { top: 25%; right: 15%; }
.symbol:nth-child(3) { top: 55%; right: 10%; }
.symbol:nth-child(4) { bottom: 25%; right: 15%; }
.symbol:nth-child(5) { bottom: 10%; left: 45%; }
.symbol:nth-child(6) { top: 55%; left: 10%; }

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-coin {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    animation: floatCoin 4s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.floating-coin:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-coin:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.floating-coin:nth-child(3) {
    bottom: 15%;
    left: 20%;
    animation-delay: 2s;
}

.gift-box {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b6b 0%, #d63031 100%);
    border-radius: 8px;
    animation: bounce 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.gift-box::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 12px;
    background: #ffd700;
    border-radius: 6px;
}

.trophy {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%);
    border-radius: 8px;
    animation: glow 2s ease-in-out infinite alternate;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    color: #ffd700;
    font-size: 1.2rem;
    animation: twinkle 2s ease-in-out infinite alternate;
}

.star:nth-child(1) { top: 5%; left: 25%; animation-delay: 0s; }
.star:nth-child(2) { top: 30%; left: 5%; animation-delay: 0.5s; }
.star:nth-child(3) { top: 60%; left: 15%; animation-delay: 1s; }
.star:nth-child(4) { top: 15%; right: 25%; animation-delay: 1.5s; }
.star:nth-child(5) { bottom: 10%; right: 5%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

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

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

@keyframes glow {
    0% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    100% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

@keyframes twinkle {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.2); }
}

/* Мобільна адаптація */
@media (max-width: 768px) {
    .loyalty-container {
        padding: 20px 15px;
        height: auto;
        max-height: none;
        min-height: 400px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .main-title {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .main-subtitle {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .features-grid {
        gap: 10px;
    }

    .feature-item {
        padding: 10px;
        flex-direction: row;
        text-align: left;
        gap: 10px;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .feature-content h3 {
        font-size: 0.95rem;
        margin-bottom: 3px;
    }

    .feature-content p {
        font-size: 0.8rem;
    }

    .wheel-container {
        width: 180px;
        height: 180px;
    }

    .wheel-center {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .symbol {
        font-size: 0.9rem;
    }

    .floating-coin {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .gift-box {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .gift-box::before {
        width: 35px;
        height: 6px;
        top: -2px;
    }

    .trophy {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }

    .visual-content {
        order: -1;
        min-height: 220px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }

    .wheel-container {
        width: 240px;
        height: 240px;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-content h3 {
        font-size: 1.1rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }
}

/* Планшетна адаптація */
@media (min-width: 769px) and (max-width: 1024px) {
    .loyalty-container {
        padding: 20px;
    }

    .content-wrapper {
        gap: 25px;
    }

    .main-title {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .main-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .features-grid {
        gap: 8px;
    }

    .feature-item {
        padding: 8px 12px;
    }

    .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .feature-content h3 {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }

    .feature-content p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .wheel-container {
        width: 220px;
        height: 220px;
    }

    .wheel-center {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .symbol {
        font-size: 1rem;
    }

    .floating-coin {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }

    .gift-box {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .gift-box::before {
        width: 40px;
        height: 8px;
        top: -3px;
    }

    .trophy {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

.footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
    border-top: 2px solid #ffd700;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 40px;
    position: relative;
    z-index: 2;
}

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

.footer-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.3s ease;
}

.footer-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffd700 0%, #00ff88 50%, #ff6b6b 100%);
    border-radius: 10px 10px 0 0;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

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

.footer-links li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding-left: 15px;
    position: relative;
}

.footer-links li a::before {
    content: '▶';
    font-size: 0.7rem;
    color: #ffd700;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    padding-left: 25px;
    transform: translateX(5px);
}

.footer-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.promo-section {
    text-align: center;
    background: linear-gradient(135deg, #ff6b6b 0%, #d63031 100%);
    color: white;
}

.promo-section::before {
    background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
}

.promo-title {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.promo-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.promo-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #1a1a2e;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.promo-button:hover {
    background: linear-gradient(135deg, #00cc6a 0%, #00aa55 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.promo-button::after {
    content: '🎰';
    margin-left: 10px;
    font-size: 1.2rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.payment-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #cccccc;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
    color: #ffd700;
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6c5ce7 0%, #5f3dc4 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.social-link:hover {
    background: linear-gradient(135deg, #5f3dc4 0%, #4c63d2 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(108, 92, 231, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    align-items: center;
}

.copyright {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    font-size: 0.8rem;
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
    transform: scale(1.05);
}

.responsible-gaming {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
}

.floating-chips {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.chip {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    animation: floatChip 8s ease-in-out infinite;
    opacity: 0.6;
}

.chip:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.chip:nth-child(2) { top: 20%; right: 10%; animation-delay: 2s; }
.chip:nth-child(3) { top: 60%; left: 15%; animation-delay: 4s; }
.chip:nth-child(4) { top: 80%; right: 20%; animation-delay: 6s; }

@keyframes floatChip {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Мобільна адаптація */
@media (max-width: 768px) {
    .footer-container {
        padding: 40px 15px 30px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-section {
        padding: 25px 20px;
    }

    .section-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .section-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .footer-links li a {
        font-size: 0.9rem;
        padding: 6px 0;
    }

    .promo-title {
        font-size: 1.3rem;
    }

    .promo-text {
        font-size: 1rem;
    }

    .promo-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .payment-methods {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 1.1rem;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .payment-methods,
    .social-links {
        justify-content: center;
        gap: 10px;
    }

    .payment-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
.banner {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.banner-container {
    max-width: 1400px;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.banner-h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffab00 30%, #ff6b6b 70%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
        transform: scale(1);
    }
    100% {
        filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.6));
        transform: scale(1.02);
    }
}

.banner-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-highlight {
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.banner-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 50%, #ffd700 100%);
    color: #1a1a2e;
    padding: 16px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow:
            0 15px 40px rgba(0, 255, 136, 0.4),
            0 0 30px rgba(255, 215, 0, 0.3),
            inset 0 1px 20px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 215, 0, 0.5);
}

.banner-button::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.6s ease;
}

.banner-button:hover::before {
    left: 100%;
}

.banner-button:hover {
    background: linear-gradient(135deg, #ffd700 0%, #00ff88 50%, #ff6b6b 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow:
            0 25px 60px rgba(0, 255, 136, 0.6),
            0 0 50px rgba(255, 215, 0, 0.5),
            inset 0 1px 20px rgba(255, 255, 255, 0.3);
    border-color: #ffd700;
}

.banner-button::after {
    content: '🎰';
    margin-left: 15px;
    font-size: 1.5rem;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-coin {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700 0%, #f39c12 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    animation: floatCoin 6s ease-in-out infinite;
    box-shadow:
            0 10px 30px rgba(255, 215, 0, 0.4),
            inset 0 2px 10px rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.floating-coin:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.floating-coin:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.floating-coin:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 6s;
}

.floating-coin:nth-child(4) {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.floating-coin:nth-child(5) {
    bottom: 30%;
    right: 25%;
    animation-delay: 3s;
    animation-duration: 7.5s;
}

@keyframes floatCoin {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(15px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) translateX(-10px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-40px) translateX(20px) rotate(270deg);
        opacity: 0.7;
    }
}

.diamonds {
    position: absolute;
    width: 100%;
    height: 100%;
}

.diamond {
    position: absolute;
    color: #00d4ff;
    font-size: 1.6rem;
    animation: sparkle 4s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

.diamond:nth-child(1) { top: 15%; left: 25%; animation-delay: 0s; }
.diamond:nth-child(2) { top: 30%; right: 20%; animation-delay: 1s; }
.diamond:nth-child(3) { bottom: 25%; left: 15%; animation-delay: 2s; }
.diamond:nth-child(4) { top: 70%; right: 30%; animation-delay: 3s; }

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.3) rotate(180deg);
    }
}

.jackpot-text {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    color: #ff6b6b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse 2s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(255, 107, 107, 0.8);
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.bonus-badge {
    position: absolute;
    top: 12%;
    right: 10%;
    background: linear-gradient(135deg, #ff6b6b 0%, #d63031 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    animation: bounce 3s ease-in-out infinite;
    box-shadow:
            0 10px 30px rgba(255, 107, 107, 0.4),
            inset 0 1px 10px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

/* Планшетна адаптація */
@media (min-width: 769px) and (max-width: 1024px) {
    .banner {
        height: 500px;
    }

    .banner-container {
        padding: 30px 20px;
    }

    .banner-h1 {
        font-size: 3.2rem;
        margin-bottom: 18px;
    }

    .banner-subtitle {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

    .banner-button {
        padding: 14px 28px;
        font-size: 1.1rem;
    }

    .floating-coin {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .diamond {
        font-size: 1.4rem;
    }

    .jackpot-text {
        font-size: 1rem;
        top: 12%;
    }

    .bonus-badge {
        padding: 10px 18px;
        font-size: 0.9rem;
        top: 10%;
    }
}

/* Мобільна адаптація */
@media (max-width: 768px) {
    .banner {
        height: 450px;
    }

    .banner-container {
        padding: 25px 20px;
    }

    .banner-h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    .banner-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .banner-button {
        padding: 12px 25px;
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .banner-button::after {
        font-size: 1.2rem;
        margin-left: 8px;
    }

    .floating-coin {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .diamond {
        font-size: 1.1rem;
    }

    .jackpot-text {
        font-size: 0.9rem;
        top: 10%;
    }

    .bonus-badge {
        position: static;
        margin-bottom: 15px;
        padding: 8px 16px;
        font-size: 0.8rem;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 400px;
    }

    .banner-container {
        padding: 20px 15px;
    }

    .banner-h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .banner-subtitle {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

    .banner-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .floating-coin {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .diamond {
        font-size: 1rem;
    }

    .jackpot-text {
        font-size: 0.8rem;
    }

    .bonus-badge {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

/* Ландшафтна орієнтація для мобільних */
@media (max-width: 768px) and (orientation: landscape) {
    .banner {
        height: 350px;
    }

    .banner-container {
        padding: 20px;
    }

    .banner-h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .banner-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .banner-button {
        padding: 10px 22px;
        font-size: 0.95rem;
    }

    .jackpot-text {
        font-size: 0.8rem;
        top: 8%;
    }
}

.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-bottom: 2px solid #ffd700;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700 0%, #ffab00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 30px;
}

.logo::before {
    content: '🎰';
    font-size: 1.4rem;
    background: none;
    -webkit-text-fill-color: initial;
}

.nav {
    display: flex;
    flex: 1;
    justify-content: center;
}

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

.nav-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu li a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-btn {
    background: transparent;
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.login-btn:hover {
    border-color: #ffd700;
    color: #ffd700;
}

.signup-btn {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #1a1a2e;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 255, 136, 0.3);
}

.signup-btn:hover {
    background: linear-gradient(135deg, #00cc6a 0%, #00aa55 100%);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: #ffd700;
    margin: 2px 0;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-nav-menu {
    list-style: none;
    margin-bottom: 20px;
}

.mobile-nav-menu li {
    margin-bottom: 8px;
}

.mobile-nav-menu li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 15px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-menu li a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-actions a {
    text-align: center;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Планшетна адаптація */
@media (min-width: 769px) and (max-width: 1200px) {
    .header-container {
        max-width: 100%;
    }

    .nav-menu {
        gap: 12px;
    }

    .nav-menu li a {
        font-size: 0.85rem;
        padding: 5px 8px;
    }
}

/* Мобільна адаптація */
@media (max-width: 768px) {
    .header-container {
        height: 60px;
        padding: 0 10px;
    }

    .logo {
        font-size: 1.4rem;
        margin-right: 0;
    }

    .nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 55px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .mobile-menu-content {
        padding: 15px;
    }
}




.section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 20px;
    padding: 80px 15px;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffd700 0%, #ffab00 50%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.7;
}

ul {
    list-style: none;
    margin: 25px 0;
}

ul li {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: 700;
    font-size: 1.1rem;
}

strong {
    color: #ffd700;
    font-weight: 700;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

table tr:first-child td {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    font-weight: 700;
}

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

/* Планшетна адаптація */
@media (min-width: 769px) and (max-width: 1024px) {
    .section {
        padding: 60px 15px;
    }

    .section h2 {
        font-size: 2.3rem;
        margin-bottom: 25px;
    }

    .section p {
        font-size: 1rem;
    }

    .section table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Мобільна адаптація */
@media (max-width: 768px) {
    .section {
        padding: 50px 15px;
    }

    .container {
        padding: 0 15px;
    }

    .section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .section p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .section ul li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .section table {
        font-size: 0.8rem;
    }

    .section table td {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 15px;
    }

    h2 {
        font-size: 1.7rem;
    }

    p {
        font-size: 0.95rem;
    }

    table {
        font-size: 0.75rem;
    }

    table td {
        padding: 8px 10px;
    }
}