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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #2D1B69 0%, #1a0f3d 100%);
}

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

/* Header */
.header {
    background: rgba(45, 27, 105, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo svg {
    transition: transform 0.3s ease;
}

.logo:hover svg {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-item {
    position: relative;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #FFD700;
}

.dropdown {
    position: relative;
}

.dropdown-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #2D1B69;
    min-width: 200px;
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #3a2782;
    color: #FFD700;
}

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

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #2D1B69;
    transform: translateY(-2px);
}

.btn-orange {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    font-size: 18px;
    padding: 15px 30px;
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #FFD700;
    padding: 15px 30px;
    font-size: 18px;
}

.btn-outline:hover {
    background: #FFD700;
    color: #2D1B69;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 27, 105, 0.9), rgba(26, 15, 61, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 80px;
}

.hero-text {
    color: #fff;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
}

.hero-bonus {
    font-size: 64px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 15px;
    opacity: 0;
    animation: slideInLeft 1s ease 0.2s forwards;
}

.hero-freespins {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    opacity: 0;
    animation: slideInLeft 1s ease 0.4s forwards;
}

.hero-actions {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: slideInLeft 1s ease 0.6s forwards;
}

.hero-characters {
    position: relative;
}

.characters-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    opacity: 0;
    animation: slideInRight 1s ease 0.8s forwards;
}

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

.coin {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.coin::before {
    content: '£';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
    color: #2D1B69;
}

.coin-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.coin-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.coin-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

/* Author Section */
.author-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FFD700;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details {
    color: #fff;
}

.author-name {
    font-size: 16px;
    margin-bottom: 5px;
}

.author-update {
    font-size: 14px;
    color: #ccc;
}

/* Content Section */
.content-section {
    background: #fff;
    padding: 80px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

h1 {
    font-size: 42px;
    color: #2D1B69;
    margin-bottom: 30px;
    line-height: 1.2;
}

h2 {
    font-size: 32px;
    color: #2D1B69;
    margin: 50px 0 25px;
    border-left: 5px solid #FFD700;
    padding-left: 20px;
}

h3 {
    font-size: 24px;
    color: #333;
    margin: 40px 0 20px;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

ul {
    margin: 20px 0;
    padding-left: 30px;
}

li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

strong {
    color: #2D1B69;
    font-weight: 600;
}

/* Tables */
.bonus-table, .payment-table, .faq-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.bonus-table th, .payment-table th, .faq-table th {
    background: linear-gradient(135deg, #2D1B69, #3a2782);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.bonus-table td, .payment-table td, .faq-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.bonus-table tr:nth-child(even), .payment-table tr:nth-child(even), .faq-table tr:nth-child(even) {
    background: #f9f9f9;
}

.bonus-table tr:hover, .payment-table tr:hover, .faq-table tr:hover {
    background: #f0f0f0;
    transition: background 0.3s ease;
}

/* FAQ Section */
.faq-section {
    margin: 40px 0;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: linear-gradient(135deg, #2D1B69, #3a2782);
    color: #fff;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 20px;
    background: #fff;
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2D1B69, #1a0f3d);
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    color: #fff;
}

.cta-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ccc;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary-large {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    padding: 18px 40px;
    font-size: 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary-large {
    background: transparent;
    color: #fff;
    border: 2px solid #FFD700;
    padding: 18px 40px;
    font-size: 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    background: #FFD700;
    color: #2D1B69;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #1a0f3d;
    color: #fff;
    padding: 60px 0 30px;
}

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

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFD700;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.responsible-gambling {
    display: flex;
    gap: 15px;
}

.responsible-gambling img {
    height: 40px;
    border-radius: 5px;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #2D1B69;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px;
    }
    
    .nav.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-bonus {
        font-size: 48px;
    }
    
    .hero-freespins {
        font-size: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .bonus-table, .payment-table, .faq-table {
        font-size: 14px;
    }
    
    .bonus-table th, .bonus-table td,
    .payment-table th, .payment-table td,
    .faq-table th, .faq-table td {
        padding: 10px 8px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-bonus {
        font-size: 36px;
    }
    
    .hero-freespins {
        font-size: 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .btn-primary-large, .btn-secondary-large {
        padding: 15px 30px;
        font-size: 16px;
    }
}