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

:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --dark-bg: #1a1a2e;
    --darker-bg: #16213e;
    --text-light: #ffffff;
    --text-gray: #b8b8b8;
    --accent-gold: #ffd700;
}

/* 3D Icon Styles */
.icon-3d {
    display: inline-block;
    transform: perspective(500px) rotateY(-5deg) rotateX(5deg);
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.3),
        4px 4px 0px rgba(0, 0, 0, 0.2),
        6px 6px 10px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.3),
        inset -1px -1px 0px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 215, 0, 0.8) 50%, rgba(255, 200, 0, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--accent-gold);
}

.icon-3d:hover {
    transform: perspective(500px) rotateY(0deg) rotateX(0deg) scale(1.1);
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.3),
        4px 4px 0px rgba(0, 0, 0, 0.2),
        8px 8px 15px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.5),
        inset -1px -1px 0px rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.section-icon {
    margin-right: 0.5rem;
    font-size: 1.2em;
    vertical-align: middle;
}

.badge-icon.icon-3d,
.feature-check.icon-3d {
    -webkit-text-fill-color: var(--accent-gold);
    color: var(--accent-gold);
    background: none;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('images/spinfred-background.png') center center / cover no-repeat fixed;
    background-color: var(--dark-bg);
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumbs */
.breadcrumbs {
    background: rgba(0, 0, 0, 0.7);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--accent-gold);
    font-weight: bold;
}

.breadcrumb-list a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: var(--accent-gold);
}

.breadcrumb-list span {
    color: #ffffff;
}

/* Internal Linking */
.internal-link {
    color: #4ecdc4;
    background: rgba(78, 205, 196, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
    border-bottom: 2px solid #4ecdc4;
    text-shadow: 
        1px 1px 3px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(78, 205, 196, 0.5);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.internal-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.3);
    border-bottom-color: #ffd700;
    text-shadow: 
        1px 1px 3px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(255, 215, 0, 0.8);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.4);
    transform: translateY(-1px);
}

/* Navbar */
.navbar {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: inline-block;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    transition: transform 0.3s ease;
}

.logo a:hover .logo-img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.nav-menu-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.nav-menu-center a,
.nav-menu-right a {
    white-space: nowrap;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

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

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

.nav-menu a.active:not(:has(img))::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
}

/* Navigation Image Buttons */
.nav-menu a img {
    display: block;
}

.nav-button-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-menu a:hover .nav-button-img {
    transform: scale(1.1);
}

.nav-menu a.active .nav-button-img {
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.nav-menu a:hover img {
    color: transparent;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 3rem 2rem 5rem;
    min-height: auto;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.85);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.25);
    border: 1px solid rgba(255, 215, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    width: fit-content;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-credibility {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.credibility-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(78, 205, 196, 0.2);
    border: 1px solid rgba(78, 205, 196, 0.4);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--secondary-color);
    backdrop-filter: blur(5px);
}

.credibility-item i {
    font-size: 0.7rem;
}

.hero-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.author-label {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.author-name {
    font-weight: 600;
    color: var(--accent-gold);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.author-name:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.author-credentials {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 0.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-icon.icon-3d {
    font-size: 1.4rem;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 1), 0 0 30px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.hero-description {
    margin: 0;
}

.hero-description p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0, 0, 0, 0.9);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.5rem 0;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 1), 0 0 15px rgba(0, 0, 0, 0.6);
}

.hero-feature-item span:not(.feature-check) {
    color: #ffffff;
}

.feature-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-check.icon-3d {
    background: linear-gradient(135deg, var(--secondary-color), #3ba8a0);
    box-shadow: 0 4px 8px rgba(78, 205, 196, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
    transform: perspective(300px) rotateY(-3deg);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    padding-top: 0.5rem;
}

.hero-register-btn {
    flex-shrink: 0;
}

.hero-bonus-btn {
    padding: 14px 28px;
    font-size: 1rem;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.hero-image-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-button-img {
    height: auto;
    max-width: 220px;
    width: 100%;
    display: block;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #ff8e8e);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
    background: linear-gradient(45deg, var(--secondary-color), #6ee5dc);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.6);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Image Button Links */
.btn-image-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.btn-image-link:hover {
    transform: translateY(-2px);
}

.hero-button-img {
    height: auto;
    max-width: 200px;
    width: 100%;
    display: block;
}

.cta-button-img {
    height: auto;
    max-width: 250px;
    width: 100%;
    display: block;
    margin: 0 auto;
}

/* Content Sections - Base Styles */
.content-section {
    padding: 5rem 2rem;
}

.section-h2 {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.section-h3 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.section-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    max-width: 900px;
}

/* Section 1: The Thrill Behind Every Spin */
.section-thrill {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

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

.thrill-content {
    max-width: 1000px;
    margin: 0 auto;
}

.thrill-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.thrill-item {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thrill-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.thrill-icon {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
}

.thrill-icon .icon-3d {
    font-size: 3rem;
}

.thrill-text {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.thrill-text strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.fun-fact {
    display: flex;
    gap: 1rem;
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.4);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.fun-fact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.fun-fact-icon.icon-3d {
    font-size: 2.2rem;
}

.fun-fact > div {
    flex: 1;
}

.fun-fact p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 0.5rem 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.fact-source {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.8rem !important;
    font-style: italic;
    margin: 0.5rem 0 0 0 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.fun-fact strong {
    color: var(--accent-gold);
}

/* Section 2: The Psychology of Luck */
.section-psychology {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15), rgba(255, 107, 107, 0.15));
    backdrop-filter: blur(10px);
}

.psychology-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.psychology-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.psychology-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.psychology-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.psychology-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.psychology-badge {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.psychology-details h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.psychology-details p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.spinfred-tip {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(78, 205, 196, 0.2);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.spinfred-tip > div {
    flex: 1;
}

.spinfred-tip p {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 0.5rem 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.tip-author {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.85rem !important;
    font-style: italic;
    margin: 0.5rem 0 0 0 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.spinfred-tip strong {
    color: var(--secondary-color);
}

/* Section 3: The Science of Probability */
.section-probability {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
}

.probability-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.probability-content {
    max-width: 1100px;
    margin: 0 auto;
}

.rng-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.rng-card {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.rng-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.rng-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.rng-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.rng-card h4 {
    color: var(--accent-gold);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.rng-card p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.spinfred-note {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.4);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

.note-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.spinfred-note > div {
    flex: 1;
    text-align: center;
}

.spinfred-note p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 0.5rem 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.note-verification {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.85rem !important;
    margin: 0.5rem 0 0 0 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.note-verification i {
    color: var(--accent-gold);
    margin-right: 0.3rem;
}

/* Section 4: Luck vs Logic */
.section-smart-play {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.smart-play-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.smart-play-content {
    background: rgba(0, 0, 0, 0.75);
    padding: 3.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.smart-habits {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.habit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.habit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
    border-left-color: var(--accent-gold);
}

.habit-marker {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.2);
    border-radius: 10px;
}

.habit-content h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.habit-content p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.smart-play-footer {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: rgba(78, 205, 196, 0.2);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.smart-play-footer .footer-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.smart-play-footer p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Section 5: The Aussie Way */
.section-aussie {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 107, 107, 0.15));
    backdrop-filter: blur(10px);
}

.aussie-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(0, 0, 0, 0.75);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.aussie-header .section-h2 {
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 1), 0 0 30px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
    color: #ffffff;
    font-weight: 700;
}

.aussie-header .section-intro {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0, 0, 0, 0.9);
    color: #ffffff;
    font-weight: 400;
}

.aussie-flag {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.aussie-content {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.aussie-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.aussie-feature {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.aussie-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.aussie-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.aussie-text h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: capitalize;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.aussie-text p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.aussie-footer {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.4);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.aussie-footer .footer-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.aussie-footer > div {
    flex: 1;
    text-align: center;
}

.aussie-footer p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 0 0.5rem 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.footer-author {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.85rem !important;
    font-style: italic;
    margin: 0.5rem 0 0 0 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.75rem;
}

/* Section 6: Quick Reference Table */
.section-reference {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

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

.reference-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reference-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.reference-table thead {
    background: rgba(255, 215, 0, 0.2);
}

.reference-table th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.4);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.reference-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.reference-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.1);
}

.reference-table td {
    padding: 1.2rem 1.5rem;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.reference-table td strong {
    color: var(--accent-gold);
    font-weight: 700;
}

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

/* Engagement Section - E-E-A-T Focus */
.engagement-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
    backdrop-filter: blur(10px);
}

.engagement-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.engagement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(78, 205, 196, 0.25);
    border: 1px solid rgba(78, 205, 196, 0.5);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.engagement-title {
    font-size: 2.8rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 1), 0 0 30px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.engagement-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.engagement-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* Trust Signals */
.trust-signals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.trust-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.trust-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.trust-icon-wrapper {
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
}

.trust-card h3 {
    font-size: 1.6rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.trust-card p {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.7;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
}

/* Expert Insights */
.expert-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.insight-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.insight-header {
    margin-bottom: 1.5rem;
}

.expert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.insight-content h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.insight-content p {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.stat-item {
    text-align: center;
    background: rgba(255, 215, 0, 0.15);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.stat-label {
    font-size: 0.95rem;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.stat-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-top: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.insight-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(78, 205, 196, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 1.5rem;
}

.insight-footer i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.insight-footer span {
    color: #ffffff;
    font-size: 0.95rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* FAQ Section */
.faq-section {
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.faq-title {
    font-size: 2rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.faq-section h2.faq-title {
    font-size: 2rem;
}

.faq-title .icon-3d {
    font-size: 1.8rem;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.25);
}

.faq-question i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-question span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.faq-answer {
    padding: 1.5rem;
    padding-top: 0;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    z-index: -1;
}

.cta-section .container {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 1), 0 0 30px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
}

.cta-section p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0, 0, 0, 0.9);
}

/* Footer */
footer {
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.98));
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
}

.footer-container {
    padding: 4rem 2rem 2rem;
}

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

/* Footer Brand */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.footer-logo a:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 215, 0, 0.15);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.footer-badge-item:hover {
    background: rgba(255, 215, 0, 0.25);
    transform: translateX(5px);
}

.footer-badge-item i {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.footer-badge-item span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Footer Links */
.footer-links,
.footer-support,
.footer-responsible {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-heading i {
    font-size: 1.1rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    position: relative;
    padding-left: 0;
}

.footer-menu a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent-gold);
}

.footer-menu a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
    padding-left: 20px;
}

.footer-menu a:hover::before {
    opacity: 1;
    left: 0;
}

/* Responsible Gaming Section */
.responsible-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.help-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    background: rgba(78, 205, 196, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.help-link:hover {
    background: rgba(78, 205, 196, 0.25);
    transform: translateX(5px);
    border-color: rgba(78, 205, 196, 0.5);
}

.help-link i {
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-legal {
    flex: 1;
    min-width: 250px;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0.5rem 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.age-restriction {
    color: var(--accent-gold) !important;
    font-weight: 600;
    font-size: 0.95rem !important;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.cert-badge i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.cert-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description p {
        font-size: 1.05rem;
    }

    .section-h2 {
        font-size: 2rem;
    }

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

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

    .aussie-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .engagement-title {
        font-size: 2.2rem;
    }

    .trust-signals {
        grid-template-columns: 1fr;
    }

    .expert-insights {
        grid-template-columns: 1fr;
    }

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

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

/* Responsive Breadcrumbs */
@media (max-width: 768px) {
    .breadcrumbs {
        padding: 0.5rem 0;
    }
    
    .breadcrumb-list {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar .container {
        grid-template-columns: 1fr auto;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu-center {
        position: static;
        transform: none;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .nav-menu-right {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        align-items: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding: 2rem 1rem 3rem;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-description p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-features {
        padding: 1rem 0;
    }

    .hero-feature-item {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .hero-register-btn {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-button-img {
        max-width: 200px;
    }

    .hero-bonus-btn {
        width: 100%;
        text-align: center;
    }

    .hero-image-overlay {
        bottom: 15px;
        right: 15px;
        padding: 0.75rem 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .nav-button-img {
        height: 35px;
    }

    .cta-button-img {
        max-width: 200px;
    }

    .engagement-title {
        font-size: 1.8rem;
    }

    .engagement-subtitle {
        font-size: 1rem;
    }

    .trust-signals {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-card {
        padding: 2rem;
    }

    .expert-insights {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .insight-card {
        padding: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .faq-section {
        padding: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-title {
        font-size: 1.6rem;
        flex-direction: column;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-certifications {
        justify-content: center;
    }

    .footer-badges {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .help-links {
        gap: 0.5rem;
    }

    /* Content Sections Mobile */
    .section-h2 {
        font-size: 1.8rem;
    }

    .section-h3 {
        font-size: 1.4rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .thrill-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .thrill-item {
        padding: 1.5rem;
    }

    .psychology-content {
        padding: 2rem;
    }

    .psychology-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .psychology-badge {
        margin: 0 auto;
    }

    .rng-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .rng-card {
        padding: 2rem 1.5rem;
    }

    .smart-play-content {
        padding: 2rem;
    }

    .habit-item {
        padding: 1.2rem;
    }

    .aussie-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .aussie-content {
        padding: 2rem;
    }

    .reference-table-wrapper {
        padding: 1rem;
    }

    .reference-table {
        font-size: 0.9rem;
    }

    .reference-table th,
    .reference-table td {
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content-wrapper {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 1), 0 0 25px rgba(0, 0, 0, 0.8);
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-credibility {
        gap: 0.5rem;
    }

    .credibility-item {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }

    .hero-description p {
        font-size: 0.95rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 1), 0 0 18px rgba(0, 0, 0, 0.7);
    }

    .hero-feature-item {
        font-size: 0.9rem;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 1);
    }

    .hero-image-overlay {
        bottom: 10px;
        right: 10px;
        padding: 0.6rem 0.8rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }
}

