@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

/* Hero Section - Unique Design */
.rg-hero-section {
    position: relative;
    padding: 100px 50px 80px 50px;
    margin-top: 20px;
    margin-bottom: 80px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(26, 26, 46, 0.95) 50%, rgba(107, 70, 193, 0.1) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--panel-border);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 0 60px rgba(0, 212, 255, 0.1);
}

.rg-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(107, 70, 193, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.rg-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.rg-hero-badge {
    display: inline-block;
    margin-bottom: 30px;
    padding: 10px 25px;
    background: rgba(0, 255, 229, 0.2);
    border: 2px solid var(--accent-neon);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.rg-hero-badge span {
    color: var(--accent-neon);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rg-hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 35px;
    text-shadow: 0 0 30px var(--glow-primary), 0 0 60px var(--glow-primary);
    line-height: 1.2;
}

.rg-hero-text-wrapper {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: left;
}

.rg-hero-lead {
    font-size: 1.3rem;
    color: var(--text-primary);
    line-height: 1.9;
    margin-bottom: 25px;
    font-weight: 400;
}

.rg-hero-sub {
    font-size: 1.2rem;
    color: var(--accent-neon);
    line-height: 1.8;
    font-weight: 500;
}

.rg-hero-note {
    max-width: 850px;
    margin: 0 auto 0 auto;
    margin-bottom: 0;
    padding: 30px 40px;
    background: rgba(0, 212, 255, 0.08);
    border-left: 4px solid var(--accent-neon);
    border-radius: 12px;
    text-align: left;
}

.rg-hero-note p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Page Table of Contents */
.page-toc {
    margin: 40px auto 80px;
    padding: 30px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid var(--panel-border);
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35), inset 0 0 20px rgba(0, 212, 255, 0.05);
    max-width: 1000px;
}

.page-toc h2 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-toc ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.page-toc a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--panel-border);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.page-toc a i {
    color: var(--accent-neon);
}

.page-toc a:hover {
    color: var(--text-primary);
    border-color: var(--accent-neon);
    box-shadow: 0 0 15px var(--glow-accent);
}

/* Breadcrumbs */
.breadcrumbs {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 10px 20px;
    font-size: 0.95rem;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin: 0;
    color: var(--text-secondary);
}

.breadcrumbs a {
    color: var(--accent-neon);
    text-decoration: none;
}

.breadcrumbs li::after {
    content: "/";
    margin: 0 6px;
    color: var(--text-secondary);
}

.breadcrumbs li:last-child::after {
    content: "";
}

/* Page Table of Contents */
.page-toc {
    margin: 40px auto 80px;
    padding: 30px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid var(--panel-border);
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35), inset 0 0 20px rgba(0, 212, 255, 0.05);
    max-width: 1000px;
}

.page-toc h2 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-toc ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.page-toc a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--panel-border);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.page-toc a i {
    color: var(--accent-neon);
}

.page-toc a:hover {
    color: var(--text-primary);
    border-color: var(--accent-neon);
    box-shadow: 0 0 15px var(--glow-accent);
}

/* What Responsible Gambling Really Means - Unique Design */
.rg-meaning-section {
    margin-top: 180px;
    padding: 0;
}

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

.rg-meaning-section .rg-section-container {
    padding-top: 40px;
}

.rg-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--panel-border);
}

.rg-section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-neon) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px var(--glow-primary);
    flex-shrink: 0;
}

.rg-section-icon i {
    font-size: 2.5rem;
    color: var(--cosmic-dark);
}

.rg-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    text-shadow: 0 0 15px var(--glow-primary);
    flex: 1;
}

.rg-intro-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 50px;
    max-width: 900px;
}

.rg-principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.rg-principle-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(10, 10, 26, 0.9) 100%);
    border: 1px solid var(--panel-border);
    border-radius: 15px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rg-principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.rg-principle-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-neon);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--glow-accent);
}

.rg-principle-card:hover::before {
    left: 100%;
}

.rg-principle-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: rgba(0, 212, 255, 0.15);
    border: 2px solid var(--panel-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.rg-principle-card:hover .rg-principle-icon {
    background: rgba(0, 212, 255, 0.25);
    border-color: var(--accent-neon);
    box-shadow: 0 0 25px var(--glow-accent);
    transform: scale(1.1) rotate(5deg);
}

.rg-principle-icon i {
    font-size: 2.5rem;
    color: var(--accent-neon);
    text-shadow: 0 0 15px var(--glow-accent);
}

.rg-principle-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.5;
}

.rg-closing-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(107, 70, 193, 0.1) 100%);
    border: 2px solid var(--accent-neon);
    border-radius: 15px;
    padding: 35px 40px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 40px var(--glow-accent);
}

.rg-closing-box p {
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* Why Responsible Gambling Is Important - Unique Design */
.rg-importance-section {
    margin-top: 80px;
    padding: 60px 0;
    background: var(--panel-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--panel-border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.rg-importance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-neon), var(--accent-primary), var(--accent-neon), transparent);
    animation: scanline 4s linear infinite;
}

.rg-importance-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.rg-section-title-alt {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-shadow: 0 0 15px var(--glow-primary);
}

.rg-importance-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto;
}

.rg-importance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.rg-importance-item {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 10, 26, 0.8) 100%);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    padding: 30px 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.rg-importance-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-neon);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.rg-importance-item:hover {
    border-color: var(--accent-neon);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow-accent);
    transform: translateX(5px);
}

.rg-importance-item:hover::before {
    transform: scaleY(1);
}

.rg-importance-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-neon);
    text-shadow: 0 0 15px var(--glow-accent);
    flex-shrink: 0;
    line-height: 1;
}

.rg-importance-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.6;
    flex: 1;
}

.rg-importance-footer {
    text-align: center;
    padding: 30px;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.rg-importance-footer p {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* How to Gamble Safely Online - Unique Design */
.rg-safety-section {
    margin-top: 80px;
    padding: 0;
}

.rg-safety-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.rg-safety-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 40px var(--glow-primary);
    border: 1px solid var(--panel-border);
}

.rg-safety-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rg-safety-header-content {
    padding: 20px 0;
}

.rg-safety-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-top: 20px;
}

.rg-safety-practices {
    background: var(--panel-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--panel-border);
    border-radius: 15px;
    padding: 50px 40px;
    position: relative;
}

.rg-subsection-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-neon);
    margin-bottom: 35px;
    text-align: center;
    text-shadow: 0 0 10px var(--glow-accent);
}

.rg-safety-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.rg-safety-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(10, 10, 26, 0.6) 100%);
    border: 1px solid var(--panel-border);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.rg-safety-item:hover {
    border-color: var(--accent-neon);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-accent);
    transform: translateY(-3px);
}

.rg-safety-item i {
    font-size: 1.5rem;
    color: var(--accent-neon);
    text-shadow: 0 0 10px var(--glow-accent);
    flex-shrink: 0;
}

.rg-safety-item span {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.rg-safety-closing {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* Understanding the Signs - Unique Design */
.rg-signs-section {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(26, 26, 46, 0.95) 50%, rgba(255, 107, 107, 0.05) 100%);
    border: 1px solid var(--panel-border);
    border-radius: 20px;
    position: relative;
}

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

.rg-signs-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 900px;
    margin: 30px auto 0;
}

.rg-signs-container {
    position: relative;
}

.rg-signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.rg-sign-item {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(26, 26, 46, 0.9) 100%);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.rg-sign-item:hover {
    border-color: rgba(255, 107, 107, 0.6);
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.2), 0 0 20px rgba(255, 107, 107, 0.1);
    transform: translateY(-3px);
}

.rg-sign-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 107, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rg-sign-icon i {
    font-size: 1.5rem;
    color: #ff6b6b;
}

.rg-sign-item p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.rg-signs-action {
    background: rgba(255, 107, 107, 0.15);
    border: 2px solid rgba(255, 107, 107, 0.4);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.rg-signs-action i {
    font-size: 2rem;
    color: #ff6b6b;
    flex-shrink: 0;
    margin-top: 5px;
}

.rg-signs-action p {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* Support Services - Unique Design */
.rg-support-section {
    margin-top: 80px;
    padding: 0;
}

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

.rg-support-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 900px;
    margin: 30px auto 0;
}

.rg-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.rg-support-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(26, 26, 46, 0.9) 100%);
    border: 1px solid var(--panel-border);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rg-support-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rg-support-card:hover {
    border-color: var(--accent-neon);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 30px var(--glow-accent);
    transform: translateY(-5px);
}

.rg-support-card:hover::before {
    opacity: 1;
}

.rg-support-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.rg-support-card-header i {
    font-size: 3rem;
    color: var(--accent-neon);
    text-shadow: 0 0 20px var(--glow-accent);
}

.rg-support-card-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.rg-support-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

.rg-support-note {
    text-align: center;
    padding: 30px;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 12px;
    border: 1px solid var(--panel-border);
}

.rg-support-note p {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* Tools Section - Unique Design */
.rg-tools-section {
    margin-top: 80px;
    padding: 60px 0;
    background: var(--panel-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--panel-border);
    border-radius: 20px;
}

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

.rg-tools-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 900px;
    margin: 30px auto 0;
}

.rg-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.rg-tool-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 10, 26, 0.8) 100%);
    border: 1px solid var(--panel-border);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.rg-tool-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-neon);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 35px var(--glow-accent);
}

.rg-tool-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 255, 229, 0.2) 100%);
    border: 2px solid var(--accent-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.rg-tool-card:hover .rg-tool-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 30px var(--glow-accent);
}

.rg-tool-icon-wrapper i {
    font-size: 2rem;
    color: var(--accent-neon);
    text-shadow: 0 0 15px var(--glow-accent);
}

.rg-tool-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.rg-tool-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.rg-tools-footer {
    text-align: center;
    padding: 30px;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 12px;
}

.rg-tools-footer p {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* Budget Section - Unique Design */
.rg-budget-section {
    margin-top: 80px;
    padding: 0;
}

.rg-budget-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.rg-budget-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 40px var(--glow-primary);
    border: 1px solid var(--panel-border);
}

.rg-budget-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rg-budget-text {
    padding: 20px 0;
}

.rg-budget-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-top: 20px;
    margin-bottom: 40px;
}

.rg-budget-practices {
    background: var(--panel-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--panel-border);
    border-radius: 15px;
    padding: 40px 35px;
    margin-bottom: 30px;
}

.rg-budget-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rg-budget-list li {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.7;
    padding-left: 35px;
    position: relative;
}

.rg-budget-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: var(--accent-neon);
    color: var(--cosmic-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 10px var(--glow-accent);
}

.rg-budget-closing {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* Help Others Section - Unique Design */
.rg-help-others-section {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(26, 26, 46, 0.95) 50%, rgba(107, 70, 193, 0.05) 100%);
    border: 1px solid var(--panel-border);
    border-radius: 20px;
}

.rg-help-others-header {
    text-align: center;
    margin-bottom: 50px;
}

.rg-help-others-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 900px;
    margin: 30px auto 0;
}

.rg-help-others-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.rg-help-item {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(10, 10, 26, 0.9) 100%);
    border: 1px solid var(--panel-border);
    border-radius: 15px;
    padding: 30px 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.rg-help-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 0 15px 0 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rg-help-item:hover {
    border-color: var(--accent-neon);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 25px var(--glow-accent);
    transform: translateY(-5px);
}

.rg-help-item:hover::after {
    opacity: 1;
}

.rg-help-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-neon);
    text-shadow: 0 0 20px var(--glow-accent);
    flex-shrink: 0;
    line-height: 1;
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--accent-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--glow-accent);
}

.rg-help-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.6;
    flex: 1;
    padding-top: 15px;
}

.rg-help-others-footer {
    text-align: center;
    padding: 30px;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 12px;
}

.rg-help-others-footer p {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* Casinos Section - Unique Design */
.rg-casinos-section {
    margin-top: 80px;
    padding: 0;
}

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

.rg-casinos-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 900px;
    margin: 30px auto 0;
}

.rg-casinos-features {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.rg-casinos-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 40px var(--glow-primary);
    border: 1px solid var(--panel-border);
}

.rg-casinos-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rg-casinos-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rg-casino-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(10, 10, 26, 0.8) 100%);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.rg-casino-feature:hover {
    border-color: var(--accent-neon);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow-accent);
    transform: translateX(5px);
}

.rg-casino-feature i {
    font-size: 1.8rem;
    color: var(--accent-neon);
    text-shadow: 0 0 15px var(--glow-accent);
    flex-shrink: 0;
}

.rg-casino-feature span {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.rg-casinos-footer {
    text-align: center;
    padding: 30px;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 12px;
}

.rg-casinos-footer p {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* Keeping Gaming Enjoyable - Unique Design */
.rg-enjoyable-section {
    margin-top: 80px;
    padding: 80px 0;
    background: var(--panel-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--panel-border);
    border-radius: 20px;
    text-align: center;
}

.rg-enjoyable-content {
    max-width: 900px;
    margin: 0 auto;
}

.rg-enjoyable-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-neon) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px var(--glow-accent);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 50px var(--glow-accent);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 70px var(--glow-accent);
    }
}

.rg-enjoyable-icon-large i {
    font-size: 4rem;
    color: var(--cosmic-dark);
}

.rg-enjoyable-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 50px;
}

.rg-enjoyable-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.rg-tip-item {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(26, 26, 46, 0.9) 100%);
    border: 1px solid var(--panel-border);
    border-radius: 15px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.rg-tip-item:hover {
    border-color: var(--accent-neon);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 25px var(--glow-accent);
    transform: translateY(-5px);
}

.rg-tip-item i {
    font-size: 2.5rem;
    color: var(--accent-neon);
    text-shadow: 0 0 20px var(--glow-accent);
}

.rg-tip-item p {
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.rg-enjoyable-closing {
    font-size: 1.2rem;
    color: var(--accent-neon);
    line-height: 1.8;
    margin: 0;
    font-weight: 600;
}

/* Final Thoughts - Unique Design */
.rg-final-section {
    margin-top: 80px;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(26, 26, 46, 0.95) 50%, rgba(107, 70, 193, 0.1) 100%);
    border: 2px solid var(--accent-neon);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 60px var(--glow-accent);
    position: relative;
    overflow: hidden;
}

.rg-final-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 229, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.rg-final-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.rg-final-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-neon) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px var(--glow-accent);
}

.rg-final-icon i {
    font-size: 3.5rem;
    color: var(--cosmic-dark);
}

.rg-final-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-shadow: 0 0 25px var(--glow-primary);
}

.rg-final-text {
    text-align: left;
    margin-bottom: 50px;
}

.rg-final-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 25px;
}

.rg-final-text p:last-child {
    margin-bottom: 0;
}

.rg-final-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.rg-cta-button {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-neon);
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-neon) 100%);
    color: var(--cosmic-dark);
    box-shadow: 0 4px 20px var(--glow-primary);
}

.rg-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px var(--glow-accent);
}

.rg-cta-button.secondary {
    background: transparent;
    color: var(--accent-neon);
    border-color: var(--accent-neon);
}

.rg-cta-button.secondary:hover {
    background: rgba(0, 255, 229, 0.1);
}

/* Ripple Effect for CTA Buttons */
.rg-cta-button {
    position: relative;
    overflow: hidden;
}

.rg-cta-button .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Active state for safety items */
.rg-safety-item.active {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(26, 26, 46, 0.9) 100%);
    border-color: var(--accent-neon);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow-accent);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .rg-hero-title {
        font-size: 2.5rem;
    }

    .rg-section-title, .rg-section-title-alt {
        font-size: 2rem;
    }

    .rg-safety-header {
        grid-template-columns: 1fr;
    }

    .rg-budget-content, .rg-casinos-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .rg-hero-section {
        padding: 60px 30px 50px 30px;
        margin-bottom: 60px;
    }

    .rg-meaning-section {
        margin-top: 100px;
    }

    .rg-hero-title {
        font-size: 2rem;
    }

    .rg-hero-lead {
        font-size: 1.1rem;
    }

    .rg-hero-sub {
        font-size: 1.05rem;
    }

    .rg-section-header {
        flex-direction: column;
        text-align: center;
    }

    .rg-section-title, .rg-section-title-alt {
        font-size: 1.8rem;
    }

    .rg-principles-grid, .rg-importance-grid, .rg-safety-list, .rg-signs-grid, .rg-support-grid, .rg-tools-grid, .rg-help-others-grid, .rg-enjoyable-tips {
        grid-template-columns: 1fr;
    }

    .rg-safety-practices, .rg-budget-practices {
        padding: 30px 25px;
    }

    .rg-final-title {
        font-size: 2rem;
    }

    .rg-final-cta {
        flex-direction: column;
        align-items: center;
    }

    .rg-cta-button {
        width: 100%;
        max-width: 300px;
    }

    .page-toc ul {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .rg-hero-section {
        padding: 40px 20px 35px 20px;
        margin-bottom: 50px;
    }

    .rg-meaning-section {
        margin-top: 80px;
    }

    .rg-hero-title {
        font-size: 1.7rem;
    }

    .rg-section-title, .rg-section-title-alt {
        font-size: 1.5rem;
    }

    .rg-section-icon {
        width: 60px;
        height: 60px;
    }

    .rg-section-icon i {
        font-size: 2rem;
    }

    .rg-principle-icon {
        width: 70px;
        height: 70px;
    }

    .rg-principle-icon i {
        font-size: 2rem;
    }

    .page-toc {
        padding: 20px;
    }
}

