:root {
    --terracotta: #D46B2E;
    --terracotta-light: #E67E22;
    --terracotta-dark: #B8560A;
    --ocean-blue: #0080A2;
    --ocean-light: #00B4D8;
    --ocean-dark: #005F7A;
    --golden-wattle: #F4A62A;
    --golden-light: #FDB45C;
    --golden-dark: #D98D1A;
    --aussie-green: #2D7234;
    --aussie-green-light: #52B788;
    --aussie-green-dark: #1A4A1E;
    --dark-bg: #0F1419;
    --dark-secondary: #1A1F2E;
    --dark-card: #252B3A;
    --text-primary: #ffffff;
    --text-secondary: #CBD5E0;
    --success: #52B788;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 3.5rem;
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.6);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Main Navigation Wrapper */
.roo-top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
    background: rgba(15, 20, 25, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(212, 107, 46, 0.3);
    box-shadow: var(--shadow-md);
}

.roo-top-nav.active-scroll {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-lg);
}

.roo-nav-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.roo-brand {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--golden-wattle) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    filter: drop-shadow(0 2px 4px rgba(212, 107, 46, 0.4));
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.roo-brand:hover {
    filter: drop-shadow(0 3px 6px rgba(212, 107, 46, 0.6));
    transform: scale(1.02);
}

.roo-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.roo-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.roo-links a:hover {
    color: var(--terracotta);
}

.roo-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--terracotta), var(--golden-wattle));
    transition: var(--transition);
    border-radius: 2px;
}

.roo-links a:hover::after {
    width: 100%;
}

.roo-action-btns {
    display: flex;
    gap: 1rem;
}

.roo-action {
    padding: 0.875rem 2.25rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    display: inline-block;
    text-align: center;
    min-height: 48px;
    line-height: 1.5;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.roo-action::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.roo-action:hover::before {
    width: 300px;
    height: 300px;
}

.roo-action:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.roo-primary {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-dark) 100%);
    color: var(--text-primary);
    border: 2px solid var(--ocean-light);
}

.roo-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--terracotta);
}

.roo-outline {
    background: transparent;
    color: var(--terracotta);
    border: 3px solid var(--terracotta);
    font-weight: 700;
}

.roo-outline:hover {
    background: var(--terracotta);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 107, 46, 0.5);
}

.roo-major {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-light) 100%);
    color: var(--text-primary);
    font-size: 1.15rem;
    padding: 1.125rem 2.75rem;
    font-weight: 900;
    border: none;
}

.roo-major:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 40px rgba(212, 107, 46, 0.6);
    filter: brightness(1.1);
}

.roo-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1002;
}

.roo-toggle span {
    width: 28px;
    height: 4px;
    background: var(--terracotta);
    transition: var(--transition);
    border-radius: 3px;
}

.roo-toggle.toggled span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.roo-toggle.toggled span:nth-child(2) {
    opacity: 0;
}

.roo-toggle.toggled span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* Welcome Stage Area */
.roo-stage {
    margin-top: 100px;
    padding: 4rem var(--spacing-sm) var(--spacing-lg);
    background: linear-gradient(135deg, #0F1419 0%, #1A1F2E 50%, #252B3A 100%);
    position: relative;
    overflow: hidden;
}

.roo-stage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 107, 46, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 128, 162, 0.15) 0%, transparent 50%);
    opacity: 0.6;
}

.roo-stage-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.outback-tag {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, rgba(212, 107, 46, 0.35) 0%, rgba(244, 166, 42, 0.25) 100%);
    border: 2px solid rgba(212, 107, 46, 0.7);
    border-radius: 50px;
    color: var(--golden-wattle);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 6px 20px rgba(212, 107, 46, 0.5);
    backdrop-filter: blur(10px);
}

.roo-stage-text h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #ffffff 0%, var(--terracotta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(212, 107, 46, 0.3));
}

.roo-stage-text .stage-subtitle {
    font-size: 1.65rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    line-height: 1.6;
}

.roo-stage-visual {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.roo-stage-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 500px;
    max-height: 500px;
}

/* Outback Wildlife Icons */
.outback-icon {
    position: absolute;
    font-size: 4rem;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    color: #D46B2E;
    filter: blur(1px);
    animation: drift 20s infinite ease-in-out;
}

.outback-icon-a {
    top: 10%;
    left: 5%;
    font-size: 5rem;
    animation-delay: 0s;
}

.outback-icon-b {
    top: 60%;
    right: 8%;
    font-size: 4.5rem;
    animation-delay: 7s;
    opacity: 0.06;
}

.outback-icon-c {
    bottom: 15%;
    left: 15%;
    font-size: 3.5rem;
    animation-delay: 3s;
}

.outback-icon-d {
    top: 20%;
    right: 10%;
    font-size: 4rem;
    animation-delay: 5s;
    opacity: 0.07;
}

.outback-icon-e {
    bottom: 10%;
    right: 12%;
    font-size: 5.5rem;
    animation-delay: 10s;
}

.outback-icon-4 {
    top: 35%;
    left: 8%;
    font-size: 4.5rem;
    animation-delay: 6s;
}

.outback-icon-5 {
    top: 70%;
    right: 15%;
    font-size: 4rem;
    animation-delay: 8s;
    opacity: 0.075;
}

.outback-icon::before {
    content: '🦘';
}

/* Night Sky Constellation */
.sky-stars {
    position: absolute;
    top: 15%;
    left: 8%;
    width: 120px;
    height: 120px;
    z-index: 1;
    opacity: 0.7;
}

.sky-stars .starlight {
    position: absolute;
    color: #FFD700;
    font-size: 1.2rem;
    animation: shimmer 2s infinite ease-in-out;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.6));
}

.sky-stars .starlight-a {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4rem;
    animation-delay: 0s;
}

.sky-stars .starlight-b {
    top: 30%;
    left: 70%;
    animation-delay: 0.4s;
}

.sky-stars .starlight-c {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    animation-delay: 0.8s;
}

.sky-stars .starlight-d {
    bottom: 30%;
    left: 30%;
    font-size: 1.1rem;
    animation-delay: 1.2s;
}

.sky-stars .starlight-e {
    bottom: 0;
    left: 45%;
    animation-delay: 1.6s;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes drift {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-25px) rotate(3deg);
    }
}

/* Main Content Wrapper */
.roo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.roo-segment,
.section {
    padding: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section {
    background: linear-gradient(135deg, rgba(0, 128, 162, 0.08) 0%, rgba(212, 107, 46, 0.05) 100%);
    border-top: 2px solid rgba(212, 107, 46, 0.3);
    border-bottom: 2px solid rgba(212, 107, 46, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.testimonial-card {
    background: var(--dark-card);
    border: 3px solid rgba(212, 107, 46, 0.3);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 107, 46, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--terracotta);
    box-shadow: 0 12px 40px rgba(212, 107, 46, 0.3);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-header {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--terracotta);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-dark) 100%);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--golden-wattle);
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    color: var(--golden-wattle);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-text::before {
    content: '"';
    font-size: 2.5rem;
    color: var(--terracotta);
    opacity: 0.3;
    position: absolute;
    left: -0.5rem;
    top: -0.75rem;
}

.faq-section {
    background: linear-gradient(135deg, rgba(0, 128, 162, 0.05) 0%, rgba(212, 107, 46, 0.03) 100%);
}

.faq-container {
    max-width: 900px;
    margin: var(--spacing-md) auto 0;
}

.faq-item {
    background: var(--dark-card);
    border-left: 4px solid var(--terracotta);
    margin-bottom: var(--spacing-md);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(212, 107, 46, 0.2);
    transform: translateX(4px);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--terracotta);
    margin: 0;
    padding: var(--spacing-md);
    cursor: pointer;
}

.faq-answer {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

.segment-heading {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--golden-wattle) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 6px rgba(212, 107, 46, 0.4));
}

/* Pokies Zone Layout */
.pokies-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.pokie-tile {
    background: var(--dark-card);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 3px solid rgba(212, 107, 46, 0.3);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.pokie-tile::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 107, 46, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.pokie-tile::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        rgba(0, 128, 162, 0.4) 0%,
        rgba(244, 166, 42, 0.4) 50%,
        rgba(0, 128, 162, 0.4) 100%);
    opacity: 0.6;
    transition: var(--transition);
}

.pokie-tile:hover::before {
    opacity: 1;
}

.pokie-tile:hover::after {
    opacity: 1;
    height: 5px;
}

.pokie-tile:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(212, 107, 46, 0.2);
    border-color: var(--terracotta);
}

.fair-dinkum-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, rgba(212, 107, 46, 0.25) 0%, rgba(244, 166, 42, 0.2) 100%);
    color: var(--golden-wattle);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    border: 1.5px solid rgba(212, 107, 46, 0.5);
    backdrop-filter: blur(10px);
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(212, 107, 46, 0.3);
    transition: var(--transition);
}

.pokie-tile:hover .fair-dinkum-label {
    transform: scale(1.05);
    border-color: var(--terracotta);
    box-shadow: 0 4px 15px rgba(212, 107, 46, 0.4);
}

.pokie-symbol {
    font-size: 4.5rem;
    margin-bottom: var(--spacing-sm);
}

.pokie-tile h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    color: var(--terracotta);
    font-weight: 800;
}

.pokie-tile p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Story Information Rows */
.story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.story-row:nth-child(even) .story-content {
    order: 2;
}

.story-content h3 {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--terracotta);
    font-weight: 800;
}

.story-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-visual {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, rgba(0, 128, 162, 0.2) 0%, rgba(212, 107, 46, 0.15) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border: 2px solid rgba(212, 107, 46, 0.3);
    box-shadow: var(--shadow-md);
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

/* Signup Banner */
.signup-banner {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-dark) 100%);
    padding: var(--spacing-lg) var(--spacing-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--terracotta);
    border-bottom: 3px solid var(--terracotta);
    box-shadow: var(--shadow-lg);
}

.signup-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 107, 46, 0.2) 0%, transparent 70%);
    animation: ripple 4s ease-in-out infinite;
}

@keyframes ripple {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.signup-banner h2 {
    font-size: 2.75rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.signup-banner .roo-action {
    position: relative;
    z-index: 2;
}

.signup-banner .roo-container {
    position: relative;
    z-index: 2;
}

/* Game Showcase Grid */
.game-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.game-tile {
    position: relative;
    height: 320px;
    background: var(--dark-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid rgba(212, 107, 46, 0.3);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    display: block;
}

.game-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-tile::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent, rgba(244, 166, 42, 0.15), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.game-tile:hover::after {
    left: 100%;
}

.game-tile:hover {
    transform: scale(1.08);
    border-color: var(--terracotta);
    box-shadow: var(--shadow-xl);
}

.game-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 128, 162, 0.3) 0%, rgba(212, 107, 46, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 600;
}

.game-hover-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--golden-wattle);
    font-size: 1.75rem;
    font-weight: 900;
}

.game-tile:hover .game-hover-text {
    opacity: 1;
}

/* Rich Text Content */
.rich-content {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-top: var(--spacing-md);
    font-size: 1.05rem;
}

/* SEO Text Content */
.seo-text {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-top: var(--spacing-md);
    font-size: 1.05rem;
}

.seo-text h3 {
    color: var(--terracotta);
    margin-bottom: var(--spacing-sm);
    font-size: 1.75rem;
    font-weight: 800;
}

.seo-text p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.8;
}

.seo-text ul,
.seo-text ol {
    margin: var(--spacing-md) 0 var(--spacing-md) var(--spacing-lg);
    background: rgba(212, 107, 46, 0.08);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--terracotta);
}

.seo-text li {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1rem;
}

.seo-text li:last-child {
    margin-bottom: 0;
}

.seo-text ul li::marker {
    color: var(--golden-wattle);
    font-weight: 700;
    font-size: 1.2rem;
}

.seo-text ol li::marker {
    color: var(--terracotta);
    font-weight: 700;
    font-size: 1rem;
}

.seo-text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.rich-content h3 {
    color: var(--terracotta);
    margin-bottom: var(--spacing-sm);
    font-size: 1.75rem;
    font-weight: 800;
}

.content-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

/* Feature Showcase Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.feature-tile {
    background: var(--dark-card);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    border: 3px solid rgba(212, 107, 46, 0.3);
    transition: var(--transition);
    cursor: pointer;
    color: var(--text-secondary);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.feature-tile img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--golden-wattle);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.feature-tile:hover .feature-label {
    opacity: 1;
}

.feature-tile:hover {
    transform: scale(1.12);
    border-color: var(--terracotta);
    box-shadow: var(--shadow-lg);
    color: var(--terracotta);
}

/* Comparison Table */
.compare-wrap {
    overflow-x: auto;
    margin-bottom: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid rgba(212, 107, 46, 0.3);
}

.compare-table thead {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-dark) 100%);
}

.compare-table th,
.compare-table td {
    padding: 1.25rem;
    text-align: left;
}

.compare-table th {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    color: var(--text-primary);
}

.compare-table tbody tr {
    border-bottom: 2px solid rgba(212, 107, 46, 0.2);
    transition: var(--transition);
}

.compare-table tbody tr:hover {
    background: rgba(212, 107, 46, 0.1);
}

.compare-table td {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 500;
}

.provider-badge {
    width: 70px;
    height: 45px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border: 2px solid rgba(212, 107, 46, 0.3);
}

.roo-compact {
    padding: 0.625rem 1.75rem;
    font-size: 0.9rem;
}

/* Details Info Table */
.details-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid rgba(212, 107, 46, 0.3);
    box-shadow: var(--shadow-md);
}

.details-table tr {
    border-bottom: 2px solid rgba(212, 107, 46, 0.2);
}

.details-table tr:last-child {
    border-bottom: none;
}

.details-table td {
    padding: 1.25rem;
}

.details-table td:first-child {
    font-weight: 800;
    color: var(--terracotta);
    width: 30%;
    background: rgba(0, 128, 162, 0.1);
    font-size: 1.05rem;
}

.details-table td:last-child {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Site Bottom Footer */
.roo-footer {
    background: var(--dark-secondary);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 3px solid var(--terracotta);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-col h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--terracotta);
    font-weight: 800;
    font-size: 1.25rem;
}

.footer-col p,
.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.625rem;
    transition: var(--transition);
    font-size: 1.05rem;
    font-weight: 500;
}

.footer-col a:hover {
    color: var(--terracotta);
    padding-left: 8px;
}

.security-badges {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(0, 128, 162, 0.15), rgba(37, 43, 58, 0.3));
    border: 2px solid rgba(212, 107, 46, 0.4);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.security-icon {
    flex: 1;
    min-width: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    text-align: center;
    border: 2px solid rgba(212, 107, 46, 0.3);
    transition: var(--transition);
    color: var(--golden-wattle);
    overflow: hidden;
    padding: 8px;
    font-weight: 600;
}

.security-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.security-icon:hover {
    transform: translateY(-3px);
    border-color: var(--terracotta);
    box-shadow: 0 5px 15px rgba(212, 107, 46, 0.4);
}

.safe-play-zone {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    margin-top: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(0, 128, 162, 0.15), rgba(37, 43, 58, 0.3));
    border: 2px solid rgba(45, 114, 52, 0.4);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.safe-play-badge {
    flex: 1;
    min-width: 0;
    height: 60px;
    background: rgba(45, 114, 52, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    text-align: center;
    text-decoration: none;
    color: var(--aussie-green-light);
    transition: var(--transition);
    border: 2px solid rgba(82, 183, 136, 0.3);
    font-weight: 700;
    overflow: hidden;
    padding: 8px;
}

.safe-play-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.safe-play-badge:hover {
    transform: translateY(-3px);
    border-color: var(--aussie-green);
    box-shadow: 0 5px 15px rgba(82, 183, 136, 0.4);
}

.safe-play-link {
    flex: 1;
    min-width: 0;
    height: 110px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid rgba(82, 183, 136, 0.3);
    overflow: hidden;
    padding: 15px;
}

.safe-play-link:hover {
    transform: translateY(-3px);
    border-color: var(--aussie-green);
    box-shadow: 0 5px 15px rgba(82, 183, 136, 0.4);
}

.safe-play-img {
    width: 100%;
    height: 100%;
    max-width: 150px;
    max-height: 90px;
    object-fit: contain;
    display: block;
}

.trust-badge {
    flex: 1;
    min-width: 0;
    min-height: 120px;
    background: rgba(0, 128, 162, 0.1);
    border: 2px solid rgba(212, 107, 46, 0.3);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.trust-badge:hover {
    border-color: var(--terracotta);
    background: rgba(0, 128, 162, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 107, 46, 0.3);
}

.trust-badge-img {
    width: 100%;
    height: 100%;
    max-width: 140px;
    max-height: 100px;
    object-fit: contain;
    opacity: 0.9;
    transition: var(--transition);
}

.trust-badge:hover .trust-badge-img {
    opacity: 1;
}

.footer-legal {
    text-align: center;
    padding-top: var(--spacing-md);
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* Player Reviews Area */
.reviews-area {
    background: linear-gradient(135deg, rgba(0, 128, 162, 0.08) 0%, rgba(212, 107, 46, 0.05) 100%);
    border-top: 2px solid rgba(212, 107, 46, 0.3);
    border-bottom: 2px solid rgba(212, 107, 46, 0.3);
}

.reviews-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.review-box {
    background: var(--dark-card);
    border: 3px solid rgba(212, 107, 46, 0.3);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.review-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 107, 46, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.review-box:hover {
    transform: translateY(-8px);
    border-color: var(--terracotta);
    box-shadow: 0 12px 40px rgba(212, 107, 46, 0.3);
}

.review-box:hover::before {
    opacity: 1;
}

.review-top {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.reviewer-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--terracotta);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-dark) 100%);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--golden-wattle);
}

.reviewer-data {
    flex: 1;
}

.reviewer-data h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 0.25rem;
}

.stars-display {
    color: var(--golden-wattle);
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.review-message {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.review-message::before {
    content: '"';
    font-size: 2rem;
    color: var(--terracotta);
    opacity: 0.3;
    position: absolute;
    left: -0.5rem;
    top: -0.5rem;
}

/* Questions Zone */
.questions-zone {
    background: linear-gradient(135deg, rgba(0, 128, 162, 0.05) 0%, rgba(212, 107, 46, 0.03) 100%);
}

.questions-wrap {
    max-width: 900px;
    margin: var(--spacing-md) auto 0;
}

.question-block {
    background: var(--dark-card);
    border-left: 4px solid var(--terracotta);
    margin-bottom: var(--spacing-md);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.question-block:hover {
    box-shadow: 0 8px 24px rgba(212, 107, 46, 0.2);
    transform: translateX(4px);
}

.question-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--terracotta);
    margin: 0;
    padding: var(--spacing-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.question-title::before {
    content: '▼';
    font-size: 0.8rem;
    transition: var(--transition);
    display: inline-block;
}

.question-response {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

/* Typography Styles for Rich Content */
.rich-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--terracotta);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.rich-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terracotta-light);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.rich-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--golden-wattle);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

.rich-content strong {
    color: var(--terracotta);
    font-weight: 700;
}

.rich-content em {
    font-style: italic;
    color: var(--golden-wattle);
}

.rich-content a {
    color: var(--ocean-light);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
}

.rich-content a:hover {
    color: var(--terracotta);
    text-shadow: 0 0 8px rgba(212, 107, 46, 0.4);
}

/* Content List Styles */
.rich-content ul,
.rich-content ol {
    margin: var(--spacing-md) 0 var(--spacing-md) var(--spacing-lg);
    background: rgba(212, 107, 46, 0.08);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--terracotta);
}

.rich-content li {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1rem;
}

.rich-content li:last-child {
    margin-bottom: 0;
}

.rich-content ul li::marker {
    color: var(--golden-wattle);
    font-weight: 700;
    font-size: 1.2rem;
}

.rich-content ol li::marker {
    color: var(--terracotta);
    font-weight: 700;
    font-size: 1rem;
}

.rich-content ul ul,
.rich-content ol ol {
    margin: 0.75rem 0 0 var(--spacing-md);
    background: rgba(212, 107, 46, 0.04);
    border-left-width: 3px;
}

.rich-content ul ul li::marker,
.rich-content ol ol li::marker {
    color: rgba(244, 166, 42, 0.8);
}

/* Generic Lists Styling */
ol:not(.roo-links),
ul:not(.roo-links) {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
}

ol:not(.rich-content ol):not(.seo-text ol):not(.roo-links),
ul:not(.rich-content ul):not(.seo-text ul):not(.roo-links) {
    background: rgba(212, 107, 46, 0.08);
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--terracotta);
}

li:not(.roo-links li) {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1rem;
}

li:not(.roo-links li):last-child {
    margin-bottom: 0;
}

ul:not(.roo-links) li::marker {
    color: var(--golden-wattle);
    font-weight: 700;
    font-size: 1.2rem;
}

ol:not(.roo-links) li::marker {
    color: var(--terracotta);
    font-weight: 700;
    font-size: 1rem;
}

h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--terracotta);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--terracotta-light);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--golden-wattle);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

strong {
    color: var(--terracotta);
    font-weight: 700;
}

em {
    font-style: italic;
    color: var(--golden-wattle);
}

a:not(.roo-action):not(.roo-brand):not(.roo-links a):not(.safe-play-badge):not(.safe-play-link):not(.footer-col a) {
    color: var(--ocean-light);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
}

a:not(.roo-action):not(.roo-brand):not(.roo-links a):not(.safe-play-badge):not(.safe-play-link):not(.footer-col a):hover {
    color: var(--terracotta);
    text-shadow: 0 0 8px rgba(212, 107, 46, 0.4);
}

/* Tablet and Mobile Responsive Styles */
@media (max-width: 968px) {
    .roo-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 420px;
        height: 100vh;
        background: var(--dark-secondary);
        flex-direction: column;
        padding: var(--spacing-xl) var(--spacing-md);
        transition: var(--transition);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.7);
        border-left: 3px solid var(--gold);
        z-index: 1001;
    }

    .roo-links li {
        margin-bottom: 1.5rem;
    }

    .roo-links a {
        font-size: 1.35rem;
        padding: 1rem 0;
    }

    .roo-links.menu-open {
        right: 0;
    }

    .roo-toggle {
        display: flex;
    }

    .roo-nav-wrap {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .roo-action-btns {
        display: flex !important;
        order: 3;
        width: 100%;
        gap: 0.75rem;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .roo-action-btns .roo-action {
        flex: 1;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .roo-stage {
        margin-top: 160px;
        padding-top: 3rem;
    }

    .roo-stage-wrap {
        grid-template-columns: 1fr;
    }

    .outback-tag {
        font-size: 0.9rem;
        padding: 0.5rem 1.2rem;
    }

    .roo-stage-text h1 {
        font-size: 2.75rem;
    }

    .roo-stage-visual {
        order: 2;
        height: 380px;
    }

    .roo-stage-visual img {
        max-width: 380px;
        max-height: 380px;
    }

    .outback-icon {
        font-size: 3rem;
    }

    .outback-icon-a {
        font-size: 3.5rem;
    }

    .outback-icon-b {
        font-size: 3rem;
    }

    .outback-icon-e {
        font-size: 4rem;
    }

    .outback-icon-4 {
        font-size: 3.5rem;
    }

    .outback-icon-5 {
        font-size: 3rem;
    }

    .pokies-layout {
        grid-template-columns: 1fr;
    }

    .fair-dinkum-label {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
        top: 10px;
        right: 10px;
    }

    .story-row {
        grid-template-columns: 1fr;
    }

    .story-row .story-content {
        order: 1;
    }

    .story-row .story-visual {
        order: 2;
    }

    .story-row:nth-child(even) .story-content {
        order: 1;
    }

    .story-row:nth-child(even) .story-visual {
        order: 2;
    }

    .game-showcase {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: var(--spacing-sm);
    }

    .game-tile {
        height: 240px;
    }

    .feature-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: var(--spacing-sm);
    }

    .feature-tile {
        height: 100px;
    }

    .content-columns {
        grid-template-columns: 1fr;
    }

    .seo-text-columns {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .reviews-layout {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .rich-content h2 {
        font-size: 1.75rem;
    }

    .rich-content h3 {
        font-size: 1.35rem;
    }

    .rich-content h4 {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.35rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    .segment-heading {
        font-size: 2.25rem;
    }

    .signup-banner h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .roo-stage-text h1 {
        font-size: 2.25rem;
    }

    .roo-stage-text .stage-subtitle {
        font-size: 1.35rem;
    }

    .roo-stage-visual {
        height: 320px;
    }

    .roo-stage-visual img {
        max-width: 320px;
        max-height: 320px;
    }

    .story-visual {
        height: 250px;
    }

    .game-tile {
        height: 200px;
    }

    .game-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .feature-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .feature-tile {
        height: 90px;
    }

    .roo-action {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }

    .roo-major {
        padding: 1rem 2.25rem;
        font-size: 1.05rem;
    }

    .segment-heading {
        font-size: 1.95rem;
    }

    .safe-play-zone {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
    }

    .safe-play-badge {
        height: 100px;
    }

    .security-icon {
        height: 70px;
    }
}

/* Motion Reduction for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Keyboard Focus States */
.roo-action:focus-visible,
.roo-links a:focus-visible,
.safe-play-badge:focus-visible,
.safe-play-link:focus-visible {
    outline: 3px solid var(--terracotta);
    outline-offset: 3px;
}

/* Selection color */
::selection {
    background: var(--terracotta);
    color: var(--text-primary);
}

::-moz-selection {
    background: var(--terracotta);
    color: var(--text-primary);
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-dark) 100%);
    border-radius: 6px;
    border: 2px solid var(--dark-secondary);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--golden-wattle) 100%);
}
