/* Areslouyr - Premium Design System */
:root {
    --color-primary: #8b5cf6;
    --color-primary-light: #a78bfa;
    --color-primary-dark: #7c3aed;
    --color-accent: #10b981;
    --color-accent-light: #34d399;
    --color-success: #059669;
    --color-gold: #f59e0b;
    --color-bg: #f9fafb;
    --color-surface: #ffffff;
    --color-text: #111827;
    --color-text-light: #6b7280;
    --color-border: #d1d5db;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --radius: 16px;
    --radius-sm: 10px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

/* Header */
.main-header {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-name {
    font-size: 1.875rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--color-primary);
    letter-spacing: -0.025em;
}

.main-navigation {
    display: flex;
    gap: 2.5rem;
}

.nav-item {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-item:hover {
    color: var(--color-primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Page Wrapper */
.page-wrapper {
    min-height: calc(100vh - 200px);
}

/* Banner Section */
.banner-area {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, var(--color-accent) 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.banner-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.banner-heading {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.banner-description {
    font-size: 1.625rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.prize-display {
    margin: 2.5rem 0;
}

.main-prize {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.secondary-prizes {
    display: block;
    font-size: 1.375rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Buttons */
.cta-button {
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 1.125rem 2.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
    font-family: inherit;
}

.cta-button:hover {
    background: var(--color-success);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-large {
    font-size: 1.25rem;
    padding: 1.375rem 3.5rem;
}

.cta-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: none;
}

.cta-outline:hover {
    background: var(--color-primary);
    color: white;
}

.cta-compact {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
}

.cta-full {
    width: 100%;
}

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

.section-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
}

/* Draw Results Panel */
.draw-results-panel {
    background: var(--color-surface);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.panel-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-text);
}

.game-select {
    padding: 0.625rem 1.25rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    background: var(--color-surface);
    cursor: pointer;
    font-family: inherit;
}

.game-select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.draw-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.game-name {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.125rem;
}

.result-numbers {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.result-ball {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.375rem;
}

.result-ball.bonus {
    background: var(--color-gold);
    color: var(--color-text);
}

.panel-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--color-border);
}

.text-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.text-link:hover {
    text-decoration: underline;
}

/* Prizes Sidebar */
.prizes-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.prize-box {
    background: var(--color-surface);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all 0.3s;
}

.prize-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.prize-title {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.prize-value {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 0.625rem;
}

.prize-value.highlight {
    color: var(--color-primary);
}

.prize-value.accumulated {
    color: var(--color-accent);
}

.prize-extra {
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.prize-extra.special {
    color: var(--color-gold);
    font-weight: 600;
}

.prize-tag {
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.prize-note {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-top: 0.625rem;
    font-style: italic;
}

.prize-box.accumulated {
    border-left: 4px solid var(--color-accent);
}

/* Dialog */
.dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.dialog-overlay.active {
    display: flex;
}

.dialog-box {
    background: var(--color-surface);
    border-radius: var(--radius);
    padding: 3rem;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.dialog-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 2.25rem;
    color: var(--color-text-light);
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.dialog-close:hover {
    background: var(--color-bg);
    color: var(--color-text);
}

.dialog-header {
    margin-bottom: 2.5rem;
}

.dialog-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.625rem;
}

.dialog-header p {
    color: var(--color-text-light);
}

/* Form */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    flex-direction: column;
}

.form-row label {
    font-weight: 500;
    margin-bottom: 0.625rem;
    color: var(--color-text);
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="password"],
.form-row select {
    padding: 0.875rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-row input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.checkbox-row label {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-row input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Footer */
.main-footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3.5rem;
}

.footer-block h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    color: var(--color-text);
}

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

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

.footer-menu a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9375rem;
}

.footer-menu a:hover {
    color: var(--color-primary);
}

/* Featured Links */
.featured-links {
    max-width: 100%;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--color-border);
    transition: transform 0.2s;
}

.feature-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-image {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    text-decoration: none;
}

.feature-icon {
    font-size: 1.75rem;
}

.feature-content {
    flex: 1;
}

.feature-title {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    margin-bottom: 0.375rem;
    font-size: 1.0625rem;
    transition: color 0.2s;
}

.feature-title:hover {
    color: var(--color-primary);
}

.feature-text {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}

/* Navigation Info */
.navigation-info {
    display: flex;
    flex-direction: column;
}

.app-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-border);
}

.app-section h3 {
    margin-bottom: 1.25rem;
}

.app-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    background: var(--color-bg);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s;
}

.app-link:hover {
    background: var(--color-primary);
    transform: scale(1.08);
}

.app-icon {
    font-size: 2.25rem;
}

.navigation-info h3 {
    margin-top: 2.5rem;
}

.navigation-info h3:first-of-type {
    margin-top: 0;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
}

.social-icons {
    display: flex;
    gap: 0.875rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s;
    color: var(--color-text);
}

.social-icon:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
}

.icon-text {
    font-size: 1.125rem;
    font-weight: 600;
}

.brand-section {
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.brand-text {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-primary);
    letter-spacing: -0.025em;
}

/* Legal Section */
.legal-section {
    grid-column: 1 / -1;
    padding-top: 2.5rem;
    border-top: 2px solid var(--color-border);
    margin-top: 1.5rem;
}

.certifications {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.cert-item {
    padding: 0.875rem 1.75rem;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
}

.cert-text {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.0625rem;
}

.cert-badge {
    font-weight: 600;
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.legal-text {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin: 0;
}

.footer-copyright-block {
    grid-column: 1 / -1;
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-border);
    margin-top: 1.5rem;
    text-align: center;
}

.copyright-text {
    font-weight: 600;
    margin-bottom: 0.875rem;
    color: var(--color-text);
}

.legal-disclaimer {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.65;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .section-layout {
        grid-template-columns: 1fr;
    }
    
    .main-navigation {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .banner-heading {
        font-size: 3rem;
    }
    
    .main-prize {
        font-size: 2.5rem;
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .navigation-info h3 {
        margin-top: 2rem;
    }
}

@media (max-width: 640px) {
    .header-wrapper {
        padding: 1rem 1.5rem;
    }
    
    .banner-area {
        padding: 4rem 1.5rem;
    }
    
    .main-section {
        padding: 3rem 1.5rem;
    }
    
    .draw-results-panel,
    .prize-box {
        padding: 2rem;
    }
    
    .dialog-box {
        padding: 2rem;
    }
    
    .main-footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-wrapper {
        gap: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-image {
        margin: 0 auto;
    }
    
    .certifications {
        justify-content: center;
        gap: 1.25rem;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Responsible Gaming Page Styles */
.page-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, var(--color-accent) 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.content-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.content-card {
    margin-bottom: 3rem;
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.content-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.content-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.content-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.content-card p {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.highlight-card {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    border-left: 4px solid var(--color-primary);
}

.warning-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid var(--color-accent);
}

.contact-card {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-left: 4px solid var(--color-success);
    text-align: center;
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.principle-item {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all 0.3s;
}

.principle-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.principle-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.principle-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.principle-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Assessment List */
.assessment-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.assessment-list li {
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: var(--color-bg);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-sm);
    padding-left: 1.5rem;
    position: relative;
}

.assessment-list li::before {
    content: "•";
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

.warning-message {
    background: #fff3e0;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-accent);
    margin-top: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tool-item {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: all 0.3s;
}

.tool-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tool-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.tool-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Warning Signs */
.warning-list {
    margin-top: 1.5rem;
}

.warning-entry {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--color-surface);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-accent);
}

.warning-bullet {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-entry div {
    flex: 1;
}

.warning-entry strong {
    color: var(--color-text);
    display: block;
    margin-bottom: 0.25rem;
}

/* Support Resources */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-item {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
}

.support-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.support-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-links li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    line-height: 1.6;
}

.support-links li:last-child {
    border-bottom: none;
}

.support-links a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.support-links a:hover {
    text-decoration: underline;
}

.support-links strong {
    color: var(--color-text);
}

/* Tips List */
.tips-list {
    margin-top: 2rem;
}

.tip-entry {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--color-bg);
    border-radius: var(--radius);
    border-left: 4px solid var(--color-primary);
    transition: all 0.3s;
}

.tip-entry:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.tip-number {
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.tip-content {
    flex: 1;
}

.tip-content h4 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.tip-content p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Contact Info */
.contact-info {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: var(--radius);
    margin: 2rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-card .cta-button {
    margin-top: 1.5rem;
}

/* Responsive Design for Responsible Gaming Page */
@media (max-width: 1024px) {
    .page-banner {
        padding: 4rem 2rem;
    }
    
    .content-section {
        padding: 4rem 2rem;
    }
    
    .content-card {
        padding: 2rem;
    }
    
    .content-card h2 {
        font-size: 1.75rem;
    }
    
    .principles-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-banner {
        padding: 3rem 1.5rem;
    }
    
    .content-section {
        padding: 3rem 1rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .tip-entry {
        flex-direction: column;
        text-align: center;
    }
    
    .tip-number {
        margin: 0 auto;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

