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 {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
}

.giveaway-banner {
    max-width: 1400px;
    margin: 60px auto 40px;
    position: relative;
    min-height: 600px;
    background: url("../images/bg-banner-main.jpg") no-repeat center center;
    background-size: cover;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.3);
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 80%, rgba(255, 20, 147, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.4) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(75, 0, 130, 0.3) 0%, transparent 50%);
    z-index: 0;
}

.floating-money {
    position: absolute;
    z-index: 1;
}

.money-1 {
    top: 10%;
    right: 15%;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.money-2 {
    bottom: 20%;
    left: 10%;
    font-size: 2.5rem;
    animation: float 8s ease-in-out infinite reverse;
}

.money-3 {
    top: 60%;
    right: 5%;
    font-size: 2rem;
    animation: float 7s ease-in-out infinite;
}

.car-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 600px;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(255, 20, 147, 0.5));
}

.car-svg {
    width: 100%;
    height: auto;
}

.banner-content {
    position: relative;
    z-index: 3;
    padding: 60px;
    max-width: 60%;
}

.badge {
    display: inline-block;
    background: rgba(255, 140, 0, 0.9);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    backdrop-filter: blur(10px);
}

.main-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.amount {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.giveaway-text {
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.car-text {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #32cd32, #228b22);
    color: white;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 3px solid rgba(50, 205, 50, 0.3);
    box-shadow:
            0 10px 30px rgba(50, 205, 50, 0.4),
            inset 0 1px 20px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-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.5s ease;
}

.cta-button:hover {
    background: linear-gradient(45deg, #28a428, #1e6b1e);
    transform: translateY(-3px);
    box-shadow:
            0 15px 40px rgba(50, 205, 50, 0.6),
            inset 0 1px 20px rgba(255, 255, 255, 0.3);
    border-color: rgba(50, 205, 50, 0.6);
}

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

.cta-button:active {
    transform: translateY(-1px);
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .banner-content {
        max-width: 65%;
        padding: 50px;
    }

    .main-title {
        font-size: 3.5rem;
    }

    .car-image {
        width: 45%;
    }
}

@media (max-width: 992px) {
    .giveaway-banner {
        min-height: 500px;
        flex-direction: column;
        text-align: center;
    }

    .banner-content {
        max-width: 100%;
        padding: 40px;
        order: 2;
    }

    .car-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 80%;
        max-width: 400px;
        order: 1;
        margin-top: 20px;
    }

    .main-title {
        font-size: 3rem;
    }

    .money-1, .money-2, .money-3 {
        display: none;
    }
}

@media (max-width: 768px) {
    .giveaway-banner {
        min-height: 450px;
        margin: 0 10px;
    }

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

    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }

    .badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .giveaway-banner {
        min-height: 400px;
        border-radius: 15px;
    }

    .banner-content {
        padding: 25px 15px;
    }

    .main-title {
        font-size: 2rem;
        line-height: 1.2;
    }

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

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .car-image {
        width: 90%;
        margin-top: 15px;
    }
}

.winners-section {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
}

.winners-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
    position: relative;
}

/* Декоративні елементи */
.winners-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 33.33%;
    right: 33.33%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.2), rgba(156, 39, 176, 0.2));
    border-radius: 20px;
    z-index: -1;
    border: 2px solid rgba(233, 30, 99, 0.3);
}

.winners-column {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.column-title {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
}

.winner-item {
    display: flex;
    align-items: center;
    padding: 12px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #4caf50;
    transition: all 0.3s ease;
}

.winner-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.game-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.winner-info {
    flex: 1;
}

.winner-name {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 2px;
}

.winner-amount {
    font-size: 1.1rem;
    font-weight: bold;
    color: #4caf50;
    margin-bottom: 2px;
}

.game-name {
    font-size: 0.8rem;
    color: #888;
}

.game-name a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.game-name a:hover {
    color: #4caf50;
}

/* Центральна колонка (найкращі переможці) */
.best-winners {
    border: 2px solid rgba(233, 30, 99, 0.5);
    background: rgba(233, 30, 99, 0.1);
}

.best-winners .winner-item {
    border-left-color: #e91e63;
}

.best-winners .winner-amount {
    color: #e91e63;
    font-size: 1.2rem;
}

/* Джекпоти */
.jackpots .winner-item {
    border-left-color: #ff9800;
}

.jackpots .winner-amount {
    color: #ff9800;
}

.jackpots .winner-amount a {
    color: white
}

.jackpot-label {
    background: linear-gradient(45deg, #ff9800, #f57c00);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 2px;
    display: inline-block;
}

/* Адаптивність */
@media (max-width: 992px) {
    .winners-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .winners-container::before {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .best-winners {
        order: -1;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .winners-column {
        padding: 15px;
    }

    .column-title {
        font-size: 1.2rem;
    }

    .game-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
        font-size: 20px;
    }

    .winner-amount {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    .section-title {
        font-size: 1.5rem;
    }

    .winners-column {
        padding: 12px;
    }

    .winner-item {
        padding: 10px;
    }

    .game-icon {
        width: 35px;
        height: 35px;
        margin-right: 10px;
        font-size: 18px;
    }

    .winner-name,
    .winner-amount {
        font-size: 0.9rem;
    }

    .game-name {
        font-size: 0.7rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(30, 30, 60, 0.9));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 20px 30px;
    margin-top: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-section {
    padding: 0 15px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #e91e63;
    padding-left: 10px;
    transform: translateX(5px);
}

.footer-text {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-info .icon {
    margin-right: 12px;
    font-size: 1.2rem;
    color: #e91e63;
    min-width: 25px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #cccccc;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

.newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px 0 0 8px;
    color: white;
    font-size: 1rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: #aaaaaa;
}

.newsletter-input:focus {
    border-color: #e91e63;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-button {
    padding: 12px 25px;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    border: none;
    border-radius: 0 8px 8px 0;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
}

.newsletter-button:hover {
    background: linear-gradient(45deg, #c2185b, #7b1fa2);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #aaaaaa;
    font-size: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #e91e63;
}

.payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
    justify-content: center;
}

.payment-icon {
    width: 50px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #cccccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.payment-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer {
        padding: 40px 20px 25px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-section {
        text-align: center;
        padding: 0;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-input,
    .newsletter-button {
        border-radius: 8px;
        width: 100%;
    }

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

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

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-links a,
    .footer-text,
    .contact-info {
        font-size: 0.9rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .payment-methods {
        gap: 10px;
    }

    .payment-icon {
        width: 45px;
        height: 32px;
        font-size: 1.1rem;
    }

    .footer-bottom-links {
        gap: 15px;
    }

    .footer-bottom-links a {
        font-size: 0.9rem;
    }
}



.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;

}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.nav-link:hover {
    color: #e91e63;
    background: rgba(233, 30, 99, 0.1);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    left: 100%;
}

.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.login-btn {
    color: #ffffff;
    text-decoration: none;
    padding: 12px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #e91e63;
    color: #e91e63;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.register-btn {
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    border: 2px solid transparent;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.register-btn::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.5s ease;
}

.register-btn:hover {
    background: linear-gradient(45deg, #c2185b, #7b1fa2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.register-btn:hover::before {
    left: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    background: white;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98), rgba(22, 33, 62, 0.98));
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    z-index: 999;
    padding-top: 80px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    list-style: none;
    padding: 0 30px;
}

.mobile-nav-item {
    margin-bottom: 5px;
}

.mobile-nav-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mobile-nav-link:hover {
    background: rgba(233, 30, 99, 0.1);
    border-left-color: #e91e63;
    color: #e91e63;
    transform: translateX(10px);
}

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

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu,
    .auth-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 12px 20px;
    }

    .logo {
        font-size: 1.5rem;
    }


    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }

    .mobile-nav {
        padding: 0 20px;
    }

    .mobile-auth {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 15px;
    }

    .logo {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }


    .mobile-nav-link {
        font-size: 1rem;
        padding: 12px 15px;
    }

    .login-btn,
    .register-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.article-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    color: #ffffff;
    line-height: 1.7;
    border-radius: 15px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Заголовки */
.article-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 40px 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #e91e63;
    position: relative;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #e0e0e0;
    margin: 30px 0 20px 0;
    padding-left: 20px;
    border-left: 4px solid #9c27b0;
}

/* Параграфи */
.article-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
    color: #cccccc;
}

/* Виділений текст */
.article-content strong {
    color: #ffffff;
    font-weight: 700;
}

/* Списки */
.article-content ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.article-content li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    padding: 12px 15px 12px 45px;
    position: relative;
    color: #cccccc;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #4caf50;
    transition: all 0.3s ease;
}

.article-content li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.article-content li::before {
    content: "✓";
    position: absolute;
    left: 15px;
    top: 12px;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Таблиці */
.table-wrapper {
    margin: 30px 0;
    overflow-x: auto;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-content table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.4);
    font-size: 1rem;
}

.article-content table th {
    background: rgba(233, 30, 99, 0.8);
    color: #ffffff;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.article-content table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

.article-content table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.article-content table tr:hover {
    background: rgba(233, 30, 99, 0.1);
}

/* Мобільна прокрутка для таблиць */
@media (max-width: 768px) {
    .table-wrapper {
        margin: 20px -20px;
        border-radius: 0;
    }

    .article-content table {
        min-width: 500px;
    }

    .article-content table th,
    .article-content table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Спеціальні блоки */
.highlight-box {
    background: rgba(255, 152, 0, 0.1);
    border: 2px solid rgba(255, 152, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    backdrop-filter: blur(5px);
}

.highlight-box h3 {
    color: #ff9800;
    margin-top: 0;
    border: none;
    padding-left: 0;
}

/* Адаптивність */
@media (max-width: 992px) {
    .article-content {
        padding: 40px 20px;
    }

    .article-content h2 {
        font-size: 1.9rem;
    }

    .article-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .article-content {
        padding: 30px 15px;
        margin: 20px 10px;
    }

    .article-content h2 {
        font-size: 1.6rem;
        margin: 30px 0 20px 0;
    }

    .article-content h3 {
        font-size: 1.3rem;
        margin: 25px 0 15px 0;
        padding-left: 15px;
    }

    .article-content p,
    .article-content li {
        font-size: 1rem;
    }

    .article-content li {
        padding: 10px 12px 10px 40px;
    }
}

@media (max-width: 480px) {
    .article-content {
        padding: 20px 10px;
        margin: 10px 5px;
    }

    .article-content h2 {
        font-size: 1.4rem;
    }

    .article-content h3 {
        font-size: 1.2rem;
        padding-left: 12px;
    }

    .article-content p,
    .article-content li {
        font-size: 0.95rem;
        text-align: left;
    }
}

.games-section {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.game-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(233, 30, 99, 0.3);
}

.game-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #4a148c, #7b1fa2, #e91e63, #ff6f00);
    position: relative;
    overflow: hidden;
}

.game-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><defs><radialGradient id="bg" cx="50%" cy="50%"><stop offset="0%" style="stop-color:%234a148c"/><stop offset="100%" style="stop-color:%23e91e63"/></radialGradient></defs><rect width="400" height="200" fill="url(%23bg)"/><circle cx="60" cy="40" r="8" fill="%23ff69b4" opacity="0.7"/><circle cx="350" cy="160" r="6" fill="%23ffd700" opacity="0.6"/><circle cx="300" cy="50" r="5" fill="%23ff1493" opacity="0.8"/></svg>') center/cover;
}

.panda-emoji {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    z-index: 2;
}

.game-title {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 3;
}

.game-title h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lanterns {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.5rem;
    z-index: 3;
}

.flowers {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 1.2rem;
    z-index: 3;
}

.game-info {
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
}

.wager-info {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 15px;
    font-weight: 500;
}

.bet-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bet-btn {
    display: inline-block;
    padding: 10px 18px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
}

.bet-btn.active {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    color: #000000;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.bet-btn:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
    border-color: rgba(255, 255, 255, 0.2);
}

.bet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.bet-btn.active:hover {
    background: linear-gradient(45deg, #ffed4e, #ffa726);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.bet-btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(233, 30, 99, 0.5);
}

/* Адаптивність */
@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 15px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px 10px;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .game-image {
        height: 160px;
    }

    .panda-emoji {
        font-size: 3.5rem;
    }

    .game-title h3 {
        font-size: 1.6rem;
    }

    .bet-buttons {
        gap: 6px;
    }

    .bet-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

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

    .game-image {
        height: 140px;
    }

    .panda-emoji {
        font-size: 3rem;
    }

    .game-title h3 {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .bet-btn {
        padding: 7px 12px;
        font-size: 0.8rem;
        flex: 1;
        text-align: center;
        min-width: calc(50% - 4px);
    }

    .wager-info {
        font-size: 0.9rem;
    }
}

/* Дополнительные визуальные эффекты */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.lanterns {
    animation: float 3s ease-in-out infinite;
}

.flowers {
    animation: float 4s ease-in-out infinite reverse;
}