/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.site-logo:hover {
    color: #ffd700;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: #ffd700;
    background-color: rgba(255, 215, 0, 0.1);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: #ffd700;
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.4);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Content Section */
.content-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.content-section h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #16213e;
}

.content-section h4 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.75rem;
    color: #667eea;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.card h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card h4 {
    color: #667eea;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

/* Bonus Cards */
.bonus-card {
    text-align: center;
    position: relative;
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bonus-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
    margin: 0.5rem 0;
}

.bonus-limit {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.bonus-features {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.bonus-features li {
    padding: 0.5rem 0;
    color: #555;
}

.bonus-features li:before {
    content: "✓ ";
    color: #667eea;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Lists */
.bonus-list,
.troubleshoot-list {
    list-style: none;
    margin: 2rem 0;
    padding-left: 0;
}

.bonus-list li,
.troubleshoot-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    padding-left: 2rem;
    position: relative;
}

.bonus-list li:before,
.troubleshoot-list li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.bonus-list li:last-child,
.troubleshoot-list li:last-child {
    border-bottom: none;
}

.bonus-steps {
    margin: 2rem 0;
    padding-left: 2rem;
}

.bonus-steps li {
    padding: 0.75rem 0;
    line-height: 1.8;
}

/* Table Styles */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-table th {
    background: #667eea;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.info-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Alert/Warning Box */
.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

.warning-box strong {
    color: #856404;
}

.terms-box {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

.terms-box h4 {
    margin-top: 0;
}

.terms-box ul {
    margin-top: 1rem;
    padding-left: 2rem;
}

.terms-box li {
    padding: 0.5rem 0;
    line-height: 1.6;
}

/* Login Card */
.login-card {
    text-align: center;
    max-width: 600px;
    margin: 2rem auto;
}

.domain-text {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.highlight-card h4 {
    color: white;
    font-size: 1.5rem;
}

.highlight-card p {
    color: rgba(255,255,255,0.9);
}

.highlight-card .btn-primary {
    background: white;
    color: #667eea;
}

.highlight-card .btn-primary:hover {
    background: #ffd700;
    color: #1a1a2e;
}

/* Support List */
.support-list {
    list-style: none;
    margin: 2rem 0;
    padding-left: 0;
}

.support-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.support-list li:last-child {
    border-bottom: none;
}

/* Contact Info */
.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
    margin: 2rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    margin: 3rem 0;
}

.cta-section h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.responsible-gaming {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
    text-align: center;
}

.responsible-gaming p {
    margin: 0;
    color: #1976d2;
}

/* Footer */
.site-footer {
    background: #1a1a2e;
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-disclaimer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        width: 100%;
    }
    
    .main-navigation a {
        display: block;
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .info-table {
        font-size: 0.9rem;
        display: block;
        overflow-x: auto;
    }
    
    .info-table th,
    .info-table td {
        padding: 0.75rem;
        white-space: nowrap;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .content-section h3 {
        font-size: 1.5rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .bonus-amount {
        font-size: 2rem;
    }
}

