/*
Theme Name: AusPoki
Theme URI: https://auspoki.com
Author: AusPoki Team
Author URI: https://auspoki.com
Description: Australian Online Pokies Community Theme - Rankings based on real player reviews. Features slot machine demo, player reviews, voting system, and comprehensive pokies guide.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: auspoki
Tags: gaming, pokies, casino, reviews, custom-background, custom-logo, custom-menu, featured-images, theme-options
*/

/* ===== CSS Variables ===== */
:root {
    --gold: #F7B731;
    --gold-dark: #D4941C;
    --gold-light: #FFD93D;
    --deep-purple: #1A0A2E;
    --purple: #2D1B4E;
    --purple-light: #4A2C6A;
    --neon-pink: #FF006E;
    --neon-blue: #00D4FF;
    --white: #FFFFFF;
    --text-light: #B8B8C7;
    --wild-glow: #00ff88;
    --green: #22c55e;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--deep-purple);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== Background Animation ===== */
.bg-animation {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: radial-gradient(ellipse at 20% 20%, rgba(255,0,110,.12) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(0,212,255,.08) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(247,183,49,.06) 0%, transparent 60%),
                var(--deep-purple);
}

.floating-coins {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.coin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
    opacity: .25;
}

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: .25; }
    90% { opacity: .25; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ===== Navigation ===== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: .75rem 1rem;
    background: rgba(26,10,46,.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(247,183,49,.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.site-logo span {
    -webkit-text-fill-color: var(--neon-blue);
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all .3s ease;
    font-size: .9rem;
}

.nav-menu a:hover {
    color: var(--gold);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu span {
    width: 22px;
    height: 2px;
    background: var(--gold);
    transition: all .3s ease;
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem 3rem;
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-block;
    padding: .5rem 1.25rem;
    background: rgba(247,183,49,.15);
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
}

.hero-title .gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--white);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
    padding: .9rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--deep-purple);
    box-shadow: 0 8px 30px rgba(247,183,49,.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(247,183,49,.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.3);
}

.btn-secondary:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
}

/* ===== Sections ===== */
.section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Community Stats ===== */
.community-section {
    background: linear-gradient(135deg, rgba(45,27,78,.8), rgba(26,10,46,.9));
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(247,183,49,.2);
}

.community-header {
    text-align: center;
    margin-bottom: 2rem;
}

.community-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: .5rem;
}

.community-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.community-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0,0,0,.2);
    border-radius: 15px;
    border: 1px solid rgba(247,183,49,.1);
}

.community-stat-icon {
    font-size: 2.5rem;
    margin-bottom: .5rem;
}

.community-stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold);
}

.community-stat-label {
    font-size: .85rem;
    color: var(--text-light);
}

/* ===== Top Pick Card ===== */
.top-pick-card {
    background: linear-gradient(145deg, rgba(45,27,78,.9), rgba(26,10,46,.95));
    border-radius: 30px;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 20px 60px rgba(247,183,49,.2);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    position: relative;
}

.top-pick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--neon-pink), var(--neon-blue), var(--gold));
    background-size: 300% 100%;
    animation: gradient-shift 3s linear infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.top-pick-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--deep-purple);
    padding: .75rem 1.5rem;
    border-radius: 50px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    z-index: 5;
}

.top-pick-image {
    background: linear-gradient(135deg, #2C3E50, #4CA1AF);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.top-pick-icon {
    font-size: 8rem;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,.5));
}

.top-pick-content {
    padding: 3rem;
}

.top-pick-provider {
    color: var(--gold);
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: .5rem;
}

.top-pick-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.top-pick-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(247,183,49,.1);
    border-radius: 15px;
    border: 1px solid rgba(247,183,49,.3);
}

.top-pick-stars {
    font-size: 1.5rem;
    color: var(--gold);
}

.top-pick-rating-info {
    flex: 1;
}

.top-pick-rating-score {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--gold);
}

.top-pick-rating-count {
    font-size: .85rem;
    color: var(--text-light);
}

.top-pick-description {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.top-pick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(0,0,0,.3);
    border-radius: 15px;
}

.top-pick-stat {
    text-align: center;
}

.top-pick-stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
}

.top-pick-stat-label {
    font-size: .75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-pick-features {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    padding: .3rem .7rem;
    background: rgba(247,183,49,.1);
    border: 1px solid rgba(247,183,49,.3);
    border-radius: 15px;
    font-size: .75rem;
    color: var(--gold-light);
}

.top-pick-cta {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--deep-purple);
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.top-pick-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(247,183,49,.4);
}

/* ===== Stats Bar ===== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(45,27,78,.8), rgba(74,44,106,.5));
    border-radius: 20px;
    border: 1px solid rgba(247,183,49,.2);
    margin-bottom: 4rem;
}

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

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: .85rem;
    margin-top: .5rem;
}

/* ===== Pokies Grid ===== */
.pokies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.pokie-card {
    background: linear-gradient(145deg, rgba(45,27,78,.9), rgba(26,10,46,.95));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(247,183,49,.15);
    transition: all .4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pokie-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 50px rgba(247,183,49,.15);
}

.pokie-image {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.pokie-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(26,10,46,.95));
}

.pokie-icon {
    font-size: 3.5rem;
    z-index: 1;
}

.pokie-badge {
    position: absolute;
    top: .75rem;
    right: .75rem;
    background: var(--neon-pink);
    color: white;
    padding: .25rem .7rem;
    border-radius: 15px;
    font-size: .65rem;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
}

.pokie-badge.popular { background: var(--gold); color: var(--deep-purple); }
.pokie-badge.hot { background: linear-gradient(135deg, #FF416C, #FF4B2B); }
.pokie-badge.jackpot { background: linear-gradient(135deg, #8E2DE2, #4A00E0); }
.pokie-badge.classic { background: #27AE60; }
.pokie-badge.megaways { background: linear-gradient(135deg, #F7971E, #FFD200); color: var(--deep-purple); }
.pokie-badge.new { background: var(--neon-blue); }

.pokie-rank {
    position: absolute;
    top: .75rem;
    left: .75rem;
    width: 28px;
    height: 28px;
    background: rgba(0,0,0,.7);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .8rem;
    z-index: 2;
}

.pokie-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pokie-provider {
    font-size: .7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: .25rem;
}

.pokie-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: .5rem;
}

.pokie-rating {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .5rem;
    font-size: .85rem;
}

.pokie-rating .stars {
    color: var(--gold);
}

.pokie-rating .count {
    color: var(--text-light);
}

.pokie-description {
    color: var(--text-light);
    font-size: .85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pokie-stats {
    display: flex;
    gap: .75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.pokie-stat {
    text-align: center;
    flex: 1;
}

.pokie-stat-value {
    font-weight: 700;
    color: var(--gold);
    font-size: .9rem;
}

.pokie-stat-label {
    font-size: .6rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.pokie-features {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
    margin-bottom: 1rem;
}

.pokie-payments {
    display: flex;
    gap: .4rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.payment-icon {
    width: 28px;
    height: 18px;
    background: rgba(255,255,255,.1);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    color: var(--text-light);
    font-weight: 600;
    border: 1px solid rgba(255,255,255,.1);
}

.payment-icon.visa { background: linear-gradient(135deg, #1a1f71, #0066b2); color: #fff; }
.payment-icon.mc { background: linear-gradient(135deg, #eb001b, #f79e1b); color: #fff; }
.payment-icon.btc { background: linear-gradient(135deg, #f7931a, #ffb347); color: #fff; }
.payment-icon.eth { background: linear-gradient(135deg, #627eea, #8c9eff); color: #fff; }
.payment-icon.apple { background: #000; color: #fff; }
.payment-icon.google { background: #fff; color: #333; }

.pokie-buttons {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.pokie-cta {
    width: 100%;
    padding: .85rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--deep-purple);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none;
    text-align: center;
    display: block;
}

.pokie-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(247,183,49,.3);
}

.pokie-review {
    width: 100%;
    padding: .7rem;
    background: transparent;
    border: 2px solid rgba(255,255,255,.2);
    color: var(--white);
    border-radius: 10px;
    font-weight: 500;
    font-size: .85rem;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none;
    text-align: center;
    display: block;
}

.pokie-review:hover {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    background: rgba(0,212,255,.1);
}

.show-more-container {
    text-align: center;
    margin-top: 2rem;
}

.show-more-btn {
    padding: 1rem 3rem;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.show-more-btn:hover {
    background: var(--gold);
    color: var(--deep-purple);
}

.show-more-btn .arrow {
    transition: transform .3s ease;
}

.show-more-btn.expanded .arrow {
    transform: rotate(180deg);
}

.hidden-pokies {
    display: none;
    margin-top: 1.5rem;
}

.hidden-pokies.visible {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    animation: fadeIn .5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Reviews Section ===== */
.reviews-section {
    background: linear-gradient(135deg, rgba(45,27,78,.5), rgba(26,10,46,.8));
    border-radius: 30px;
    padding: 3rem;
    margin: 4rem auto;
    border: 1px solid rgba(247,183,49,.1);
}

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

.review-card {
    background: linear-gradient(145deg, rgba(26,10,46,.9), rgba(45,27,78,.7));
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,.1);
    transition: all .3s ease;
}

.review-card:hover {
    border-color: rgba(247,183,49,.3);
    transform: translateY(-3px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    font-weight: 700;
    flex-shrink: 0;
    text-transform: uppercase;
}

.review-avatar.blue { background: linear-gradient(135deg, #3498db, #2980b9); color: #fff; }
.review-avatar.green { background: linear-gradient(135deg, #27ae60, #2ecc71); color: #fff; }
.review-avatar.purple { background: linear-gradient(135deg, #9b59b6, #8e44ad); color: #fff; }
.review-avatar.red { background: linear-gradient(135deg, #e74c3c, #c0392b); color: #fff; }
.review-avatar.orange { background: linear-gradient(135deg, #f39c12, #e67e22); color: #fff; }
.review-avatar.teal { background: linear-gradient(135deg, #1abc9c, #16a085); color: #fff; }
.review-avatar.pink { background: linear-gradient(135deg, #e91e63, #c2185b); color: #fff; }
.review-avatar.indigo { background: linear-gradient(135deg, #3f51b5, #303f9f); color: #fff; }

.review-user-info {
    flex: 1;
}

.review-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: .2rem;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .8rem;
    color: var(--text-light);
}

.review-location {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.review-date {
    opacity: .7;
}

.review-game {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .8rem;
    background: rgba(247,183,49,.15);
    border: 1px solid rgba(247,183,49,.3);
    border-radius: 20px;
    font-size: .75rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.review-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: .75rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-light);
    font-size: .95rem;
    line-height: 1.7;
}

.review-text strong {
    color: var(--white);
}

.review-helpful {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.1);
}

.helpful-btn {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem .8rem;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    color: var(--text-light);
    font-size: .8rem;
    cursor: pointer;
    transition: all .3s ease;
}

.helpful-btn:hover {
    background: rgba(247,183,49,.1);
    border-color: rgba(247,183,49,.3);
    color: var(--gold);
}

.helpful-btn.active {
    background: rgba(34,197,94,.2);
    border-color: rgba(34,197,94,.5);
    color: var(--green);
}

.load-more-reviews {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
    padding: 1rem;
    background: transparent;
    border: 2px solid rgba(255,255,255,.2);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.load-more-reviews:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== Submit Review Form ===== */
.submit-review-section {
    background: linear-gradient(135deg, rgba(0,212,255,.1), rgba(255,0,110,.05));
    border: 2px solid rgba(0,212,255,.3);
    border-radius: 30px;
    padding: 3rem;
    margin: 4rem auto;
}

.submit-review-section .section-title {
    color: var(--neon-blue);
}

.review-form {
    max-width: 700px;
    margin: 2rem auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 500;
    color: var(--white);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0,0,0,.3);
    border: 2px solid rgba(255,255,255,.15);
    border-radius: 12px;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all .3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0,212,255,.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255,255,255,.4);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23F7B731' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-select option {
    background: var(--deep-purple);
    color: var(--white);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.star-rating-input {
    display: flex;
    gap: .5rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 2rem;
    color: rgba(255,255,255,.2);
    cursor: pointer;
    transition: all .2s ease;
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: var(--gold);
    transform: scale(1.1);
}

.vote-pokie-section {
    background: rgba(0,0,0,.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.vote-pokie-section h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--gold);
}

.vote-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: .75rem;
}

.vote-option {
    position: relative;
}

.vote-option input {
    display: none;
}

.vote-option label {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1rem;
    background: rgba(255,255,255,.05);
    border: 2px solid rgba(255,255,255,.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s ease;
    font-size: .9rem;
}

.vote-option label:hover {
    border-color: rgba(247,183,49,.5);
    background: rgba(247,183,49,.1);
}

.vote-option input:checked + label {
    border-color: var(--gold);
    background: rgba(247,183,49,.2);
    color: var(--gold);
}

.vote-option .vote-icon {
    font-size: 1.2rem;
}

.submit-review-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--neon-blue), #0099cc);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.submit-review-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0,212,255,.4);
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: .85rem;
    color: var(--text-light);
}

/* ===== Features Section ===== */
.features-section {
    background: linear-gradient(135deg, rgba(45,27,78,.5), rgba(26,10,46,.8));
    border-radius: 30px;
    padding: 3rem;
    margin: 4rem auto;
    border: 1px solid rgba(247,183,49,.1);
}

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

.feature-card {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(247,183,49,.2), rgba(247,183,49,.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
    border: 1px solid rgba(247,183,49,.3);
}

.feature-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: .75rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.6;
}

/* ===== Guide Section ===== */
.guide-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.guide-card {
    background: linear-gradient(145deg, rgba(45,27,78,.7), rgba(26,10,46,.9));
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(247,183,49,.15);
}

.guide-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: .3;
    line-height: 1;
}

.guide-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin: .75rem 0;
}

.guide-card p {
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.6;
}

/* ===== FAQ Section ===== */
.faq-container {
    max-width: 800px;
    margin: 2.5rem auto 0;
}

.faq-item {
    background: linear-gradient(145deg, rgba(45,27,78,.6), rgba(26,10,46,.8));
    border-radius: 15px;
    margin-bottom: .75rem;
    border: 1px solid rgba(247,183,49,.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease;
}

.faq-question:hover {
    background: rgba(247,183,49,.05);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 500;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(247,183,49,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    transition: transform .3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: .95rem;
}

/* ===== Responsible Gaming ===== */
.responsible-gaming {
    background: linear-gradient(135deg, rgba(255,0,110,.1), rgba(0,212,255,.05));
    border: 1px solid rgba(255,0,110,.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 4rem;
}

.responsible-gaming h2 {
    color: var(--neon-pink);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.responsible-gaming p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    font-size: .95rem;
    line-height: 1.7;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.5rem;
    background: rgba(255,0,110,.2);
    border-radius: 50px;
    font-weight: 600;
    color: var(--neon-pink);
}

/* ===== Footer ===== */
.site-footer {
    background: rgba(0,0,0,.3);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(247,183,49,.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.footer-section h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    color: var(--gold);
}

.footer-section p {
    color: var(--text-light);
    font-size: .85rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: .6rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: .85rem;
    transition: color .3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: .8rem;
}

.footer-badges {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.footer-badge {
    padding: .4rem .8rem;
    background: rgba(247,183,49,.1);
    border-radius: 6px;
    font-size: .75rem;
    color: var(--gold);
}

/* ===== Animations ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-wrapper { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .hero-cta { justify-content: center; }
    .slot-game-container { max-width: 420px; }
    .top-pick-card { grid-template-columns: 1fr; }
    .top-pick-image { min-height: 250px; }
    .section { padding: 4rem 1.5rem; }
    .reviews-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-section { padding: 5rem 1rem 2rem; }
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(26,10,46,.98); flex-direction: column; padding: 1.25rem; gap: .75rem; }
    .nav-menu.active { display: flex; }
    .mobile-menu { display: flex; }
    .hero-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    .hero-subtitle { font-size: .95rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; justify-content: center; }
    .top-pick-stats { grid-template-columns: repeat(2, 1fr); }
    .top-pick-content { padding: 1.5rem; }
    .stats-bar { padding: 1.5rem 1rem; }
    .stat-number { font-size: 2rem; }
    .pokies-grid { grid-template-columns: 1fr; }
    .hidden-pokies.visible { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section { padding: 3rem 1rem; }
    .vote-options { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 380px) {
    .vote-options { grid-template-columns: 1fr; }
}

/* ===== WordPress Specific ===== */
.wp-block-post-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.entry-content img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

/* Comments */
.comments-area {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
}

.comment-list {
    list-style: none;
}

.comment {
    background: rgba(45,27,78,.5);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(247,183,49,.1);
}

.comment-author {
    font-weight: 600;
    color: var(--gold);
}

.comment-content {
    color: var(--text-light);
    margin-top: .5rem;
}

/* WordPress Admin Bar Fix */
body.admin-bar .site-nav {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-nav {
        top: 46px;
    }
}
