@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --neon-pink: #ff00ff;
    --neon-blue: #00ffff;
    --neon-green: #00ff00;
    --neon-yellow: #ffff00;
    --neon-orange: #ff6600;
    --gold: #ffd700;
    --gold-dark: #b8860b;
    --dark-bg: #0a0a1a;
    --darker-bg: #050510;
    --card-bg: #1a1a2e;
    --text-light: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --shadow: rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* POKIES BACKGROUND */
.pokies-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.neon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}

.slot-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
}

.symbol {
    position: absolute;
    font-size: 60px;
    opacity: 0.1;
    animation: floatSymbol 15s ease-in-out infinite;
}

.s1 { top: 5%; left: 5%; animation-delay: 0s; }
.s2 { top: 15%; left: 90%; animation-delay: 1s; }
.s3 { top: 30%; left: 8%; animation-delay: 2s; }
.s4 { top: 45%; left: 85%; animation-delay: 3s; }
.s5 { top: 60%; left: 3%; animation-delay: 4s; }
.s6 { top: 75%; left: 92%; animation-delay: 5s; }
.s7 { top: 85%; left: 15%; animation-delay: 6s; }
.s8 { top: 25%; left: 50%; animation-delay: 7s; }
.s9 { top: 70%; left: 45%; animation-delay: 8s; }
.s10 { top: 90%; left: 80%; animation-delay: 9s; }

@keyframes floatSymbol {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-30px) rotate(15deg); opacity: 0.2; }
}

.coin-rain {
    position: absolute;
    width: 100%;
    height: 100%;
}

.coin {
    position: absolute;
    font-size: 30px;
    opacity: 0;
    animation: coinFall 8s linear infinite;
}

.c1 { left: 10%; animation-delay: 0s; }
.c2 { left: 25%; animation-delay: 1s; }
.c3 { left: 40%; animation-delay: 2s; }
.c4 { left: 55%; animation-delay: 3s; }
.c5 { left: 70%; animation-delay: 4s; }
.c6 { left: 85%; animation-delay: 5s; }
.c7 { left: 15%; animation-delay: 6s; }
.c8 { left: 60%; animation-delay: 7s; }

@keyframes coinFall {
    0% { top: -50px; opacity: 0; transform: rotate(0deg); }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { top: 110%; opacity: 0; transform: rotate(720deg); }
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.navbar .logo img {
    height: 50px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.navbar-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

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

.btn {
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
}

.btn-login:hover {
    background: var(--neon-blue);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--neon-blue);
}

.btn-register {
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-orange) 100%);
    color: var(--text-light);
    border: none;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 255, 0.5);
}

/* HERO SECTION */
.hero-pokies {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 20px;
    min-height: 90vh;
    position: relative;
    background: 
        radial-gradient(ellipse at center, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

/* SLOT MACHINE */
.slot-machine {
    background: linear-gradient(180deg, #2a2a4a 0%, #1a1a2e 50%, #0a0a1a 100%);
    border-radius: 20px;
    padding: 30px;
    border: 4px solid var(--gold);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 0 50px rgba(0, 0, 0, 0.5);
    width: 400px;
}

.machine-top {
    text-align: center;
    margin-bottom: 20px;
}

.jackpot-display {
    background: linear-gradient(135deg, #1a0a2e 0%, #2a1a4e 100%);
    padding: 15px 30px;
    border-radius: 10px;
    border: 3px solid var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.jackpot-label {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: var(--neon-pink);
    letter-spacing: 3px;
}

.jackpot-amount {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold);
    animation: jackpotPulse 2s ease-in-out infinite;
}

@keyframes jackpotPulse {
    0%, 100% { text-shadow: 0 0 20px var(--gold); }
    50% { text-shadow: 0 0 40px var(--gold), 0 0 60px var(--neon-yellow); }
}

.machine-body {
    position: relative;
    background: #000;
    border-radius: 15px;
    padding: 20px;
    border: 3px solid #333;
}

.reels-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    height: 80px;
}

.reel {
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, #222 0%, #111 50%, #222 100%);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #444;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.reel-strip {
    display: flex;
    flex-direction: column;
    transition: transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reel-strip span {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.payline {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 50%;
    height: 4px;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
    transform: translateY(-50%);
    pointer-events: none;
}

.machine-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

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

.bet-btn {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark-bg);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.bet-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--gold);
}

.bet-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: var(--gold);
    min-width: 60px;
    text-align: center;
}

.spin-button {
    width: 100px;
    height: 100px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-green) 0%, #00aa00 100%);
    color: var(--dark-bg);
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.spin-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.spin-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 255, 0, 0.8);
}

.spin-button.spinning {
    animation: spinPulse 0.5s ease-in-out infinite;
}

@keyframes spinPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.95); }
}

.auto-btn {
    padding: 10px 20px;
    border: 2px solid var(--neon-blue);
    border-radius: 5px;
    background: transparent;
    color: var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.auto-btn:hover,
.auto-btn.active {
    background: var(--neon-blue);
    color: var(--dark-bg);
    box-shadow: 0 0 15px var(--neon-blue);
}

.win-display {
    text-align: center;
    padding: 15px;
    margin-top: 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: var(--text-dim);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.win-display .win {
    color: var(--gold);
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 0 20px var(--gold);
    animation: winFlash 0.5s ease-in-out infinite;
}

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

.win-display.winner {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid var(--gold);
}

/* HERO CONTENT */
.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-yellow) 50%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-features {
    list-style: none;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 255, 0.3);
    margin-bottom: 30px;
}

.hero-features li {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-features li:last-child {
    border-bottom: none;
}

.hero-features strong {
    color: var(--neon-pink);
}

.btn-play-now {
    display: inline-block;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-orange) 100%);
    color: var(--text-light);
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    animation: btnPulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 0, 255, 0.5); }
    50% { box-shadow: 0 0 50px rgba(255, 0, 255, 0.8); }
}

.btn-play-now:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.7);
}

/* FEATURED POKIES */
.featured-pokies {
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.section-header p {
    font-size: 18px;
    color: var(--text-dim);
}

.pokies-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.pokie-card {
    flex: 0 0 250px;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pokie-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.3);
}

.pokie-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 5;
}

.pokie-badge.new {
    background: linear-gradient(135deg, var(--neon-green) 0%, #00aa00 100%);
    color: var(--dark-bg);
}

.pokie-badge.jackpot {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark-bg);
}

.pokie-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.pokie-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.pokie-card:hover .pokie-image img {
    transform: scale(1.1);
}

.pokie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.pokie-card:hover .pokie-overlay {
    opacity: 1;
}

.btn-play {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-orange) 100%);
    color: var(--text-light);
    font-weight: 700;
    border-radius: 25px;
}

.pokie-info {
    padding: 15px;
}

.pokie-info h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.pokie-stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.rtp {
    color: var(--neon-green);
}

.volatility {
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.volatility.high {
    background: rgba(255, 0, 0, 0.2);
    color: #ff6666;
}

.volatility.med {
    background: rgba(255, 165, 0, 0.2);
    color: #ffaa66;
}

.jackpot-val {
    color: var(--gold);
    font-weight: 700;
}

/* CATEGORIES */
.pokies-categories {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    z-index: 1;
}

.pokies-categories h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
}

.category-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: var(--neon-blue);
    margin-bottom: 15px;
}

.category-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.category-card li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--text-dim);
}

.game-count {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-orange) 100%);
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
}

/* WHY POKIES */
.why-pokies {
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.why-pokies h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.why-item:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.why-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 15px;
}

.why-item ul {
    list-style: none;
    text-align: left;
}

.why-item li {
    padding: 5px 0;
    font-size: 13px;
    color: var(--text-dim);
}

/* TOP POKIES */
.top-pokies {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    z-index: 1;
}

.top-pokies h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.top-list {
    max-width: 900px;
    margin: 0 auto;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 15px;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.top-item:hover {
    border-color: var(--neon-pink);
    transform: translateX(10px);
}

.rank {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--gold);
    min-width: 50px;
    text-align: center;
}

.top-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.top-info {
    flex: 1;
}

.top-info h4 {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.provider {
    font-size: 13px;
    color: var(--text-dim);
}

.top-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.top-stats .rtp {
    font-size: 14px;
}

.top-stats .jackpot,
.top-stats .plays {
    font-size: 12px;
    color: var(--neon-pink);
}

.btn-sm {
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-orange) 100%);
    color: var(--text-light);
    font-weight: 700;
    border-radius: 20px;
    font-size: 13px;
}

/* PROVIDERS */
.pokies-providers {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pokies-providers h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.providers-subtitle {
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 50px;
}

.providers-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.provider-card {
    background: var(--card-bg);
    padding: 25px 40px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.provider-card:hover {
    border-color: var(--neon-blue);
    transform: translateY(-5px);
}

.provider-logo {
    font-size: 36px;
}

.provider-card span:first-of-type {
    font-weight: 700;
    color: var(--text-light);
}

.games-count {
    font-size: 12px;
    color: var(--neon-green);
}

/* BIG WINS SECTION */
.big-wins {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    z-index: 1;
}

.big-wins h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.wins-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 50px;
}

.wins-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.win-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.win-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
}

.win-card.mega {
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.win-card.big {
    border-color: var(--gold);
}

.win-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-orange) 100%);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 5;
}

.win-badge.big {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark-bg);
}

.winner-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
}

.winner-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.winner-details {
    display: flex;
    flex-direction: column;
}

.winner-name {
    font-weight: 700;
    font-size: 16px;
}

.winner-location {
    font-size: 12px;
    color: var(--text-dim);
}

.win-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--neon-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.win-game {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.win-game img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 8px;
}

.win-game span {
    font-weight: 600;
    color: var(--neon-blue);
}

.win-card .win-details {
    list-style: none;
    padding: 15px 20px;
}

.win-card .win-details li {
    padding: 5px 0;
    font-size: 13px;
    color: var(--text-dim);
}

.wins-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat-label {
    font-size: 14px;
    color: var(--text-dim);
}

/* POKIES TIPS SECTION */
.pokies-tips {
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.pokies-tips h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.tip-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tip-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
}

.tip-icon {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.tip-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: var(--neon-green);
    margin-bottom: 15px;
    text-align: center;
}

.tip-card ul {
    list-style: none;
}

.tip-card li {
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-dim);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tip-card li:last-child {
    border-bottom: none;
}

/* NEW RELEASES SECTION */
.new-releases {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    z-index: 1;
}

.new-releases h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.releases-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 50px;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.release-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.release-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.3);
}

.release-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--neon-green) 0%, #00aa00 100%);
    color: var(--dark-bg);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 5;
    animation: newPulse 2s ease-in-out infinite;
}

.release-badge.hot {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: var(--text-light);
}

@keyframes newPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(0, 255, 0, 0); }
}

.release-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.release-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.release-card:hover .release-image img {
    transform: scale(1.1);
}

.release-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.release-card:hover .release-overlay {
    opacity: 1;
}

.release-info {
    padding: 20px;
}

.release-info h4 {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.release-info .provider {
    font-size: 12px;
    color: var(--neon-blue);
    display: block;
    margin-bottom: 15px;
}

.release-info ul {
    list-style: none;
    margin-bottom: 15px;
}

.release-info li {
    padding: 4px 0;
    font-size: 12px;
    color: var(--text-dim);
}

.release-date {
    font-size: 11px;
    color: var(--neon-green);
    padding: 5px 10px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 10px;
    display: inline-block;
}

.releases-cta {
    text-align: center;
}

.releases-cta p {
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.btn-new-games {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--neon-green) 0%, #00aa00 100%);
    color: var(--dark-bg);
    font-weight: 700;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-new-games:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.4);
}

/* HOW TO PLAY */
.how-to-play {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    z-index: 1;
}

.how-to-play h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--neon-pink);
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 18px;
}

.step-icon {
    font-size: 40px;
    margin: 20px 0;
}

.step-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    color: var(--neon-blue);
    margin-bottom: 15px;
}

.step-card ul {
    list-style: none;
    text-align: left;
}

.step-card li {
    padding: 5px 0;
    font-size: 13px;
    color: var(--text-dim);
}

/* FAQ */
.pokies-faq {
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.pokies-faq h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-item h4 {
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 15px;
}

.faq-item ul {
    list-style: none;
}

.faq-item li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--text-dim);
}

/* CTA */
.pokies-cta {
    padding: 100px 20px;
    text-align: center;
    background: 
        radial-gradient(ellipse at center, rgba(255, 0, 255, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, var(--darker-bg) 0%, #000 100%);
    position: relative;
    z-index: 1;
}

.cta-slot-machine {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.mini-reel {
    width: 80px;
    height: 80px;
    background: var(--card-bg);
    border: 3px solid var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    animation: reelBounce 2s ease-in-out infinite;
}

.mini-reel:nth-child(2) { animation-delay: 0.2s; }
.mini-reel:nth-child(3) { animation-delay: 0.4s; }

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

.pokies-cta h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--gold) 50%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.cta-points {
    list-style: none;
    max-width: 500px;
    margin: 0 auto 40px;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 255, 0.3);
    text-align: left;
}

.cta-points li {
    font-size: 18px;
    padding: 10px 0;
}

.btn-mega-spin {
    display: inline-block;
    padding: 25px 60px;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-orange) 50%, var(--gold) 100%);
    background-size: 200% 100%;
    color: var(--text-light);
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    animation: megaShine 3s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.5);
    transition: all 0.3s ease;
}

@keyframes megaShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-mega-spin:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 60px rgba(255, 0, 255, 0.7);
}

/* FOOTER */
.footer {
    background: #000;
    padding: 50px 20px 30px;
    border-top: 2px solid var(--neon-pink);
    box-shadow: 0 -10px 30px rgba(255, 0, 255, 0.2);
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-symbols {
    font-size: 30px;
    margin-bottom: 20px;
}

.footer-symbols span {
    margin: 0 10px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    margin: 0 20px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--neon-pink);
}

.footer-copy {
    color: var(--text-dim);
    font-size: 14px;
}

.footer-copy a {
    color: var(--neon-pink);
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wins-grid,
    .releases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-pokies {
        flex-direction: column;
        text-align: center;
    }
    
    .slot-machine {
        width: 100%;
        max-width: 400px;
    }
    
    .hero-features {
        text-align: left;
    }
    
    .wins-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }
    
    .categories-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .wins-grid,
    .releases-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .top-item {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .top-stats {
        align-items: center;
        width: 100%;
        margin-top: 10px;
    }
    
    .section-header h2,
    .pokies-categories h2,
    .why-pokies h2,
    .top-pokies h2,
    .pokies-providers h2,
    .how-to-play h2,
    .pokies-faq h2,
    .pokies-cta h2,
    .big-wins h2,
    .pokies-tips h2,
    .new-releases h2 {
        font-size: 28px;
    }
    
    .win-amount {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .slot-machine {
        padding: 20px;
    }
    
    .reel {
        width: 60px;
        height: 60px;
    }
    
    .reel-strip span {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }
    
    .spin-button {
        width: 80px;
        height: 80px;
        font-size: 14px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .btn-play-now,
    .btn-mega-spin {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .mini-reel {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .wins-stats {
        flex-direction: column;
        gap: 20px;
    }
}
