/* ============================================
   SWEET BONANZA UK - MAIN STYLES
   ============================================ */

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #FFE8F5 0%, #E8D7FF 25%, #D4F1FF 50%, #FFE8D7 75%, #FFE8F5 100%);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6B9D 0%, #C239B3 50%, #4ECDC4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2D1B4E;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: #FF6B9D;
    transform: translateY(-2px);
}

.cta-button {
    background: linear-gradient(135deg, #FF6B9D 0%, #C239B3 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.5);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
    padding: 100px 40px 120px;
    text-align: center;
}

.hero-title {
    font-size: 82px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C239B3 50%, #4ECDC4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 157, 0.2));
}

.hero-subtitle {
    font-size: 28px;
    color: #5C3D7A;
    font-weight: 700;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 30px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 80px rgba(255, 107, 157, 0.25);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.15));
}

.stat-value {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6B9D 0%, #C239B3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #5C3D7A;
    font-weight: 600;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    background: linear-gradient(135deg, #FF6B9D 0%, #C239B3 100%);
    color: white;
    padding: 22px 50px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.5);
}

.btn-secondary {
    background: white;
    color: #C239B3;
    padding: 22px 50px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 15px 50px rgba(194, 57, 179, 0.2);
    border: 3px solid #C239B3;
    transition: all 0.4s;
    display: inline-block;
}

.btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    background: #C239B3;
    color: white;
}

/* ============================================
   SECTIONS & CONTAINERS
   ============================================ */
section {
    padding: 100px 40px;
}

.section-title {
    text-align: center;
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 70px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C239B3 50%, #4ECDC4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 157, 0.2));
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   CARDS & COMPONENTS
   ============================================ */
.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(255, 107, 157, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 90px rgba(255, 107, 157, 0.25);
}

.casino-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 45px;
    border-radius: 35px;
    margin-bottom: 30px;
    box-shadow: 0 25px 70px rgba(78, 205, 196, 0.15);
    transition: all 0.5s;
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 90px rgba(78, 205, 196, 0.25);
}

.casino-rank {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 32px;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    margin-right: 20px;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(194, 57, 179, 0.1);
    margin-bottom: 25px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(194, 57, 179, 0.2);
}

/* ============================================
   CALCULATOR
   ============================================ */
.calculator {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 90px rgba(255, 107, 157, 0.2), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.calc-input {
    width: 100%;
    padding: 25px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    border: 3px solid #C239B3;
    border-radius: 20px;
    background: white;
    box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.calc-input:focus {
    outline: none;
    border-color: #FF6B9D;
    box-shadow: 0 0 0 8px rgba(255, 107, 157, 0.2);
}

.calc-button {
    width: 100%;
    padding: 25px;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B9D 0%, #C239B3 100%);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.4);
    transition: all 0.4s;
}

.calc-button:hover {
    transform: translateY(-5px) scale(1.02);
}

.calc-result {
    margin-top: 40px;
    padding: 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.4);
}

.calc-result-amount {
    font-size: 64px;
    font-weight: 900;
    color: #2D1B4E;
}

/* ============================================
   FAQ COMPONENTS
   ============================================ */
.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 25px;
    margin-bottom: 25px;
    box-shadow: 0 20px 60px rgba(194, 57, 179, 0.1);
    transition: all 0.4s;
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: 0 25px 70px rgba(194, 57, 179, 0.2);
}

.faq-question {
    font-size: 22px;
    font-weight: 700;
    color: #2D1B4E;
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 17px;
    color: #5C3D7A;
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: linear-gradient(135deg, #2D1B4E 0%, #5C3D7A 100%);
    color: white;
    padding: 80px 40px 40px;
}

footer::before {
    content: '';
    position: absolute;
    height: 5px;
    background: linear-gradient(90deg, #FF6B9D 0%, #C239B3 50%, #4ECDC4 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #FF6B9D;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.hidden {
    display: none;
}

.quick-link {
    background: rgba(255, 107, 157, 0.1);
    color: #C239B3;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid transparent;
    display: inline-block;
}

.quick-link:hover {
    background: linear-gradient(135deg, #FF6B9D 0%, #C239B3 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   TUTORIAL SPECIFIC STYLES
   ============================================ */
.tutorial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(255, 107, 157, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.6);
    margin-bottom: 35px;
}

.step-card {
    background: white;
    padding: 35px;
    border-radius: 25px;
    border-left: 6px solid #4CAF50;
    margin-bottom: 30px;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border-radius: 50%;
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.feature-box {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(54, 175, 166, 0.05));
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(78, 205, 196, 0.3);
    margin: 25px 0;
}

.symbol-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.symbol-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid rgba(255, 107, 157, 0.1);
}

.symbol-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.15);
    border-color: rgba(255, 107, 157, 0.3);
}

.warning-box {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(194, 57, 179, 0.1));
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    margin: 25px 0;
}

.tip-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    margin: 25px 0;
}

.quick-nav-link {
    background: rgba(255, 107, 157, 0.1);
    color: #C239B3;
    padding: 18px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 12px;
}

.quick-nav-link:hover {
    background: linear-gradient(135deg, #FF6B9D 0%, #C239B3 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.info-item {
    background: white;
    padding: 25px;
    border-radius: 20px;
    border: 2px solid rgba(78, 205, 196, 0.2);
    transition: all 0.3s;
}

.info-item:hover {
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.15);
}
