/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #AABBCC;
    color: #333;
    line-height: 1.6;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #451d94, #6b46c1);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

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

.btn-primary {
    background: #451d94;
    color: white;
    box-shadow: 0 4px 15px rgba(69, 29, 148, 0.3);
}

.btn-primary:hover {
    background: #5a2bb5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(69, 29, 148, 0.4);
}

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

.btn-secondary:hover {
    background: white;
    color: #451d94;
}

.btn-cta {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    font-size: 1.1rem;
    padding: 15px 30px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    background: linear-gradient(135deg, #451d94, #6b46c1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero::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 100 100"><defs><pattern id="teacup" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23teacup)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(69, 29, 148, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.bonus-highlight {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus-highlight h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.bonus-highlight p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Review Section */
.review-section {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.review-rating {
    text-align: center;
}

.stars {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.rating-text {
    font-size: 1.1rem;
    color: #666;
}

/* Main Content */
.main-content {
    background: white;
    padding: 3rem 0;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 2.2rem;
    color: #451d94;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #451d94;
    padding-bottom: 0.5rem;
}

.content-section h3 {
    font-size: 1.6rem;
    color: #333;
    margin: 2rem 0 1rem 0;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Bonus Grid */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.bonus-card {
    background: linear-gradient(135deg, #f8f9ff, #fff);
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #451d94, #6b46c1, #8b5cf6);
}

.bonus-card.featured {
    border-color: #451d94;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(69, 29, 148, 0.2);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.bonus-card h3 {
    font-size: 1.4rem;
    color: #451d94;
    margin-bottom: 1rem;
}

.bonus-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.bonus-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.bonus-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.bonus-card li {
    padding: 0.3rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.bonus-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* Comparison Table */
.comparison-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background: #451d94;
    color: white;
    font-weight: bold;
}

.comparison-table tr.highlighted {
    background: #f0f7ff;
    font-weight: bold;
}

.comparison-table tr:hover {
    background: #f9fafb;
}

/* Payment Methods */
.payment-methods {
    margin: 2rem 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0;
}

.payment-category {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
}

.payment-category h4 {
    color: #451d94;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.payment-category ul {
    list-style: none;
}

.payment-category li {
    padding: 0.3rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.payment-category li::before {
    content: '💳';
    position: absolute;
    left: 0;
}

/* Steps Guide */
.steps-guide {
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9ff;
    border-radius: 10px;
    border-left: 4px solid #451d94;
}

.step-number {
    background: #451d94;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #451d94;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    margin: 0;
}

/* Games Categories */
.games-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.game-category {
    background: linear-gradient(135deg, #f8f9ff, #fff);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.game-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #451d94;
}

.game-category h3 {
    color: #451d94;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.game-category p {
    color: #666;
    margin: 0;
}

/* Trust Features */
.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.trust-item {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    position: relative;
    transition: all 0.3s ease;
}

.trust-item::before {
    content: '🔒';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    opacity: 0.7;
}

.trust-item:hover {
    border-color: #451d94;
    transform: translateY(-2px);
}

.trust-item h4 {
    color: #451d94;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.trust-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d1b69, #451d94);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .bonus-highlight h2 {
        font-size: 2rem;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .header-buttons {
        justify-content: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 0 1rem 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .bonus-highlight h2 {
        font-size: 1.6rem;
    }
    
    .bonus-highlight p {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .bonus-card {
        padding: 1.5rem;
    }
    
    .payment-grid,
    .games-categories,
    .trust-features {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: fadeInUp 0.6s ease-out;
}

.bonus-card {
    animation: fadeInUp 0.6s ease-out;
}

.bonus-card:nth-child(2) {
    animation-delay: 0.1s;
}

.bonus-card:nth-child(3) {
    animation-delay: 0.2s;
}

.bonus-card:nth-child(4) {
    animation-delay: 0.3s;
}

.bonus-card:nth-child(5) {
    animation-delay: 0.4s;
}

.bonus-card:nth-child(6) {
    animation-delay: 0.5s;
}

/* Loading Animation for Buttons */
.btn-primary:active,
.btn-cta:active {
    transform: scale(0.98);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.btn-primary:focus,
.btn-secondary:focus,
.btn-cta:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

a:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn-primary,
    .btn-secondary,
    .btn-cta {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        background: none;
        color: black;
    }
}