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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

.header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-bottom: 2px solid #00ff88;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    color: #00ff88;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00cc6a 0%, #009952 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.hero-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #333;
}

.hero-banner h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.wheel-container {
    position: relative;
    margin: 2rem auto;
    width: 300px;
    height: 300px;
}

.wheel {
    width: 300px;
    height: 300px;
    border: 5px solid #00ff88;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(
        #00ff88 0deg 60deg,
        #ff6b35 60deg 120deg,
        #00ff88 120deg 180deg,
        #ff6b35 180deg 240deg,
        #00ff88 240deg 300deg,
        #ff6b35 300deg 360deg
    );
    transition: transform 3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.wheel-section {
    position: absolute;
    width: 50%;
    height: 50%;
    transform-origin: right bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    font-size: 12px;
    text-align: center;
}

.wheel-section:nth-child(1) { transform: rotate(0deg); }
.wheel-section:nth-child(2) { transform: rotate(60deg); }
.wheel-section:nth-child(3) { transform: rotate(120deg); }
.wheel-section:nth-child(4) { transform: rotate(180deg); }
.wheel-section:nth-child(5) { transform: rotate(240deg); }
.wheel-section:nth-child(6) { transform: rotate(300deg); }

.wheel-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.wheel-btn:hover {
    background: #e55a2b;
    transform: translate(-50%, -50%) scale(1.1);
}

.disclaimer {
    margin-top: 1rem;
    color: #cccccc;
    font-style: italic;
}

.welcome {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.welcome h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00ff88;
}

.welcome h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.welcome p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #cc4a1f 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.compliance-notice {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid #ff6b35;
    border-radius: 10px;
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: center;
}

.compliance-notice p {
    color: #ff6b35;
    margin: 0;
    font-weight: bold;
    font-size: 0.95rem;
}

.legal-notice {
    margin-top: 2rem;
    color: #00ff88;
    font-weight: bold;
    font-size: 0.9rem;
}

.loyalty-program {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.loyalty-program h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #00ff88;
}

.loyalty-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.loyalty-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.loyalty-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
    margin-top: 2rem;
}

.loyalty-benefits li {
    background: rgba(0, 255, 136, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #00ff88;
    color: #ffffff;
    text-align: center;
}

.comparison-table {
    padding: 4rem 0;
    background: #0a0a0a;
}

.comparison-table h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00ff88;
}

.comparison {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    max-width: 800px;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.comparison th {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000000;
    padding: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #333;
    color: #ffffff;
}

.comparison .advantage {
    color: #00ff88;
    font-weight: bold;
}

.comparison .disadvantage {
    color: #ff6b35;
    font-weight: bold;
}

.advantages {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00ff88;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.advantage-card {
    background: rgba(0, 255, 136, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #00ff88;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.2);
    background: rgba(0, 255, 136, 0.1);
}

.advantage-card h3 {
    color: #00ff88;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.advantage-card p {
    color: #cccccc;
    line-height: 1.6;
}

.news-section {
    padding: 4rem 0;
    background: #0a0a0a;
}

.news-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00ff88;
}

.news-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    background: #1a1a1a;
    border: 2px solid #333;
}

.news-item {
    padding: 2rem;
    display: none;
    text-align: center;
}

.news-item.active {
    display: block;
}

.news-item h3 {
    color: #00ff88;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.news-date {
    color: #ff6b35;
    font-weight: bold;
    margin-bottom: 1rem;
}

.news-item p:last-child {
    color: #cccccc;
    line-height: 1.6;
}

.carousel-controls {
    text-align: center;
    margin-top: 2rem;
}

.carousel-btn {
    background: #00ff88;
    color: #000;
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #00cc6a;
    transform: scale(1.1);
}

.age-restriction-banner {
    padding: 3rem 0;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    border-top: 3px solid #ffffff;
}

.age-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.warning-icon {
    font-size: 3rem;
    margin-right: 2rem;
}

.warning-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.warning-content p {
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.responsible-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.responsible-link:hover {
    opacity: 0.8;
}

.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-top: 2px solid #00ff88;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #cccccc;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.link-group h4 {
    color: #00ff88;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 0.5rem;
}

.link-group ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-group ul li a:hover {
    color: #00ff88;
}

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #cccccc;
}

.footer-disclaimer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.responsible-gaming-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.responsible-gaming-links a {
    color: #00ff88;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.responsible-gaming-links a:hover {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .nav {
        padding: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .comparison {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-brand h1 {
        font-size: 1.8rem;
    }

    .hero-banner {
        padding: 3rem 0;
    }

    .hero-banner h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

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

    .wheel {
        width: 280px;
        height: 280px;
    }

    .welcome h2, .loyalty-program h2, .comparison-table h2, .advantages h2, .news-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .welcome h3 {
        font-size: 1.3rem;
    }

    .welcome p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-cta {
        padding: 12px 25px;
        font-size: 1.1rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .advantage-card {
        padding: 1.5rem;
    }

    .comparison {
        font-size: 0.85rem;
    }

    .comparison th, .comparison td {
        padding: 0.8rem 0.5rem;
    }

    .news-carousel {
        margin: 0 -15px;
    }

    .news-item {
        padding: 1.5rem;
    }

    .news-item h3 {
        font-size: 1.3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .age-warning {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .warning-icon {
        margin-right: 0;
        margin-bottom: 0;
        font-size: 2.5rem;
    }

    .warning-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .warning-content p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .responsible-gaming-links {
        flex-direction: column;
        gap: 1rem;
    }

    .loyalty-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .carousel-controls {
        margin-top: 1.5rem;
    }

    .carousel-btn {
        padding: 8px 12px;
        font-size: 1.1rem;
    }
}

.notification-banner {
    position: fixed;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    max-width: 600px;
    width: 90%;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.notification-banner.show {
    top: 20px;
}

.banner-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #00ff88;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}

.banner-text h4 {
    color: #00ff88;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.banner-text p {
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
}

.banner-close {
    background: #ff6b35;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-close:hover {
    background: #e55a2b;
    transform: scale(1.1);
}

.notification-banner.success .banner-content {
    border-color: #00ff88;
}

.notification-banner.success .banner-text h4 {
    color: #00ff88;
}

.notification-banner.warning .banner-content {
    border-color: #ff6b35;
}

.notification-banner.warning .banner-text h4 {
    color: #ff6b35;
}

.notification-banner.info .banner-content {
    border-color: #00ccff;
}

.notification-banner.info .banner-text h4 {
    color: #00ccff;
}

.notification-banner.welcome .banner-content {
    border-color: #00ff88;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
}

.notification-banner.welcome .banner-text h4,
.notification-banner.welcome .banner-text p {
    color: #000000;
}

@media (max-width: 600px) {
    .nav {
        padding: 0.8rem;
    }

    .nav-brand h1 {
        font-size: 1.6rem;
    }

    .btn-primary {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .hero-banner h2 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

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

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

    .wheel-section {
        font-size: 10px;
        padding: 2px;
    }

    .wheel-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .welcome, .loyalty-program, .advantages, .news-section {
        padding: 2.5rem 0;
    }

    .welcome h2, .loyalty-program h2, .comparison-table h2, .advantages h2, .news-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .welcome h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .welcome p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .btn-cta {
        padding: 14px 28px;
        font-size: 1rem;
        margin: 1rem 0;
    }

    .compliance-notice {
        margin: 1rem 0;
        padding: 0.8rem;
    }

    .compliance-notice p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .legal-notice {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .comparison-table {
        padding: 2rem 0;
        overflow-x: auto;
    }

    .comparison {
        font-size: 0.8rem;
        min-width: 100%;
        white-space: nowrap;
    }

    .comparison th, .comparison td {
        padding: 0.6rem 0.4rem;
        text-align: center;
    }

    .advantage-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }

    .advantage-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .advantage-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .news-item {
        padding: 1.2rem;
    }

    .news-item h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .news-date {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .news-item p:last-child {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .age-restriction-banner {
        padding: 2rem 0;
    }

    .age-warning {
        padding: 1rem;
        gap: 0.8rem;
    }

    .warning-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .warning-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }

    .responsible-link {
        font-size: 0.9rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        text-align: left;
    }

    .footer-brand h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .link-group h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .link-group ul li {
        margin-bottom: 0.4rem;
    }

    .link-group ul li a {
        font-size: 0.9rem;
    }

    .footer-disclaimer {
        padding-top: 1.5rem;
        text-align: center;
    }

    .footer-disclaimer p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }

    .responsible-gaming-links a {
        font-size: 0.85rem;
        padding: 0.3rem 0;
        display: block;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .nav {
        padding: 0.6rem;
        gap: 0.8rem;
    }

    .nav-brand h1 {
        font-size: 1.4rem;
    }

    .btn-primary {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .hero-banner {
        padding: 1.5rem 0;
    }

    .hero-banner h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .wheel-container {
        width: 180px;
        height: 180px;
        margin: 1rem auto;
    }

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

    .wheel-section {
        font-size: 9px;
    }

    .wheel-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .disclaimer {
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }

    .welcome, .loyalty-program, .advantages, .news-section {
        padding: 2rem 0;
    }

    section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .welcome h3 {
        font-size: 1rem;
    }

    .welcome p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .btn-cta {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .compliance-notice {
        padding: 0.7rem;
    }

    .compliance-notice p {
        font-size: 0.8rem;
    }

    .legal-notice {
        font-size: 0.75rem;
        margin-top: 1rem;
    }

    .loyalty-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .loyalty-benefits li {
        padding: 0.8rem;
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .comparison {
        font-size: 0.75rem;
    }

    .comparison th, .comparison td {
        padding: 0.4rem 0.2rem;
    }

    .advantage-card {
        padding: 1rem;
    }

    .advantage-card h3 {
        font-size: 1rem;
    }

    .advantage-card p {
        font-size: 0.85rem;
    }

    .news-item {
        padding: 1rem;
    }

    .news-item h3 {
        font-size: 1.1rem;
    }

    .news-item p:last-child {
        font-size: 0.85rem;
    }

    .carousel-btn {
        padding: 6px 10px;
        font-size: 1rem;
        margin: 0 3px;
    }

    .age-warning {
        padding: 0.8rem;
    }

    .warning-content h3 {
        font-size: 1rem;
    }

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

    .footer {
        padding: 1.5rem 0 1rem;
    }

    .footer-brand h3 {
        font-size: 1.2rem;
    }

    .footer-brand p {
        font-size: 0.8rem;
    }

    .footer-disclaimer p {
        font-size: 0.75rem;
    }

    .notification-banner {
        width: 95%;
        max-width: none;
        left: 50%;
        transform: translateX(-50%);
    }

    .banner-content {
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .banner-close {
        align-self: flex-end;
        position: absolute;
        top: 8px;
        right: 8px;
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }

    .banner-text h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .banner-text p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}