/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #ff6b35;
    --accent-pink: #ff2e63;
    --text-light: #ffffff;
    --text-dark: #2d3436;
    --afl-color: #ff6b35;
    --afl-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --dfl-color: #00d4aa;
    --dfl-gradient: linear-gradient(135deg, #00d4aa 0%, #00f5c4 100%);
    --lfl-color: #a855f7;
    --lfl-gradient: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
    --bg-light: #f8f9ff;
    --bg-gradient: linear-gradient(135deg, #667eea22 0%, #764ba222 100%);
}

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

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    background-image: var(--bg-gradient);
    overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.floating-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 2s; }
.floating-icon:nth-child(3) { top: 60%; left: 5%; animation-delay: 4s; }
.floating-icon:nth-child(4) { top: 80%; right: 10%; animation-delay: 6s; }
.floating-icon:nth-child(5) { top: 40%; left: 20%; animation-delay: 8s; }
.floating-icon:nth-child(6) { top: 70%; left: 30%; animation-delay: 10s; }
.floating-icon:nth-child(7) { top: 30%; right: 25%; animation-delay: 12s; }
.floating-icon:nth-child(8) { top: 50%; right: 5%; animation-delay: 14s; }

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; }

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

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

.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 2.2rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.logo h1 { color: var(--text-light); font-size: 1.6rem; font-weight: 900; }
.logo .highlight { color: var(--accent-pink); }

.nav { display: flex; gap: 1.5rem; }
.nav a {
    color: var(--text-light);
    font-weight: 700;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 20px;
}
.nav a:hover {
    color: var(--accent-pink);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section - Centered */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 6rem 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(168,85,247,0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-color));
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero h1 {
    color: var(--text-light);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b35, #ff2e63, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 800;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-pink));
    color: white;
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,107,53,0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
}
.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.header-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: wiggle 2s infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 900;
}

.section-header p {
    color: #636e72;
    font-size: 1.2rem;
    font-weight: 600;
}

.table-wrapper {
    overflow-x: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-radius: 20px;
    background: white;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 900px;
}

.comparison-table thead th {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: var(--text-light);
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 700;
}

.comparison-table thead th:first-child {
    text-align: left;
    padding-left: 2rem;
    min-width: 200px;
    border-radius: 20px 0 0 0;
}

.comparison-table thead th:last-child {
    border-radius: 0 20px 0 0;
}

.casino-col { min-width: 220px; }

.casino-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Casino Logo - Image Version */
.casino-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.casino-logo:hover .logo-img {
    transform: scale(1.1);
}

.casino-code {
    font-size: 0.7rem;
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 600;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}

.comparison-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(255,107,53,0.05), rgba(168,85,247,0.05));
    transform: scale(1.01);
}

.comparison-table tbody td {
    padding: 1rem;
    text-align: center;
    vertical-align: middle;
}

.comparison-table tbody td:first-child {
    text-align: left;
    padding-left: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.highlight-row {
    background: linear-gradient(90deg, rgba(255,107,53,0.1), rgba(168,85,247,0.1));
}

.highlight-row:hover {
    background: linear-gradient(90deg, rgba(255,107,53,0.15), rgba(168,85,247,0.15));
}

.feature-name {
    display: flex;
    align-items: center;
    gap: 10px;
}
.feature-name i {
    width: 25px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.bonus-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.bonus-amount {
    font-weight: 900;
    color: var(--accent-pink);
    font-size: 1.2rem;
    text-align: center;
}

.bonus-detail {
    font-size: 0.85rem;
    color: #636e72;
}

.deposit {
    font-weight: 800;
    color: var(--primary-color);
}

.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-left: 5px;
}

.badge-best {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.check {
    color: #00d4aa;
    font-size: 1.4rem;
    filter: drop-shadow(0 0 5px rgba(0,212,170,0.5));
}

.cross {
    color: #ff4757;
    font-size: 1.4rem;
}

.comparison-table tfoot {
    background: linear-gradient(90deg, #f8f9fa, #fff);
}
.comparison-table tfoot td {
    padding: 1.5rem 1rem;
    border-radius: 0 0 20px 0;
}
.comparison-table tfoot td:last-child { border-radius: 0 0 20px 0; }

.btn-visit {
    position: relative; /* <--- ADD THIS: Allows z-index to work */
    z-index: 5;         /* <--- ADD THIS: Places it above decorative elements */
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 800;
    transition: all 0.3s;
    width: auto;
    min-width: 150px;
    text-align: center;
}
.btn-visit:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.btn-afl { background: var(--afl-gradient); }
.btn-dfl { background: var(--dfl-gradient); }
.btn-lfl { background: var(--lfl-gradient); }

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,107,53,0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(168,85,247,0.2) 0%, transparent 50%);
}

.cta-section h2 {
    color: var(--text-light);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    font-weight: 900;
}

.cta-section > .container > p {
    color: rgba(255,255,255,0.8);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    position: relative;
}

.cta-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
}

.cta-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.cta-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.3);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none; /* <--- ADD THIS: Clicks will pass through the glow */
}

.card-afl:hover .glow-afl { opacity: 0.3; background: radial-gradient(circle, rgba(255,107,53,0.5), transparent); }
.card-dfl:hover .glow-dfl { opacity: 0.3; background: radial-gradient(circle, rgba(0,212,170,0.5), transparent); }
.card-lfl:hover .glow-lfl { opacity: 0.3; background: radial-gradient(circle, rgba(168,85,247,0.5), transparent); }

.cta-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
}

/* CTA Logo - Image Version */
.cta-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 80px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.1);
    padding: 10px;
}

.cta-logo .logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bonus-display {
    margin-bottom: 1.5rem;
}

.bonus-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-spins {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    font-weight: 600;
}

.code-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.code {
    color: var(--text-light);
    font-size: 1.4rem;
    font-weight: 900;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: inline-block;
    border: 2px dashed rgba(255,255,255,0.3);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: white;
}

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

.feature-card {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #eee;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #636e72;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e, #0f0f23);
    color: var(--text-light);
    padding: 4rem 0 1rem;
}

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

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.8rem; }
.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
    font-weight: 600;
}
.footer-section ul li a:hover {
    color: var(--accent-pink);
    padding-left: 5px;
}

.disclaimer {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-pink);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { flex-direction: column; align-items: center; }
    .stat-item { width: 100%; max-width: 200px; }
    .nav { display: none; }
    .mobile-menu-btn { display: block; }
    .section-header h2 { font-size: 2rem; }
    .cta-cards { grid-template-columns: 1fr; }

    .casino-logo { width: 100px; height: 50px; }
    .cta-logo { width: 130px; height: 65px; }
}

