/* Lotores - Modern Design System */
:root {
    --color-primary: #1a237e;
    --color-primary-light: #283593;
    --color-primary-dark: #0d47a1;
    --color-accent: #ff6f00;
    --color-accent-light: #ff8f00;
    --color-success: #00c853;
    --color-gold: #ffd700;
    --color-bg: #f5f7fa;
    --color-surface: #ffffff;
    --color-text: #1a1a1a;
    --color-text-light: #6b7280;
    --color-border: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-sm: 8px;
}

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

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

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

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

.brand-logo {
    font-size: 1.75rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--color-text);
    letter-spacing: -0.5px;
}

.brand-text {
    color: var(--color-primary);
}

.brand-highlight {
    color: var(--color-accent);
}

.header-nav {
    display: flex;
    gap: 2rem;
}

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

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

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

.btn-menu span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
}

/* Main Content */
#main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-primary-dark) 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-prize {
    margin: 2rem 0;
}

.prize-amount {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.prize-bonus {
    display: block;
    font-size: 1.25rem;
    opacity: 0.9;
}

.hero-date {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Buttons */
.btn-primary {
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-hero {
    font-size: 1.2rem;
    padding: 1.25rem 3rem;
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

/* Results Section */
.results-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.results-card {
    background: var(--color-surface);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

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

.results-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
}

.lottery-selector {
    padding: 0.5rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    background: var(--color-surface);
    cursor: pointer;
}

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

.draw-date {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.lottery-logo {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.winning-numbers {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

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

.number-euro {
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    color: var(--color-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

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

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

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

/* Jackpots Column */
.jackpots-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.jackpot-logo {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.jackpot-date {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.jackpot-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.jackpot-amount.primary {
    color: var(--color-primary);
}

.jackpot-amount.progressive {
    color: var(--color-accent);
}

.jackpot-bonus {
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.jackpot-bonus.gold {
    color: var(--color-gold);
    font-weight: 600;
}

.jackpot-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.jackpot-note {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.jackpot-card.progressive {
    border-left: 4px solid var(--color-accent);
}

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

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

.modal-content {
    background: var(--color-surface);
    border-radius: var(--radius);
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

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

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

.modal-header {
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

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

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

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

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

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

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

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

.checkbox-group input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

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

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

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

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

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

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

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

/* Quick Links Section */
.footer-quick-links {
    max-width: 100%;
}

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

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

.quick-link-item:hover {
    transform: translateX(4px);
}

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

.quick-link-icon {
    font-size: 1.5rem;
}

.quick-link-content {
    flex: 1;
}

.quick-link-title {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    margin-bottom: 0.25rem;
    font-size: 1rem;
    transition: color 0.2s;
}

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

.quick-link-text {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.4;
}

/* Explore Section */
.footer-explore {
    display: flex;
    flex-direction: column;
}

.footer-mobile-app {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.footer-mobile-app h3 {
    margin-bottom: 1rem;
}

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

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

.mobile-app-icon {
    font-size: 2rem;
}

.footer-explore h3 {
    margin-top: 2rem;
}

.footer-explore h3:first-of-type {
    margin-top: 0;
}

/* Social Section */
.footer-social {
    display: flex;
    flex-direction: column;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    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-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.social-icon {
    font-size: 1.1rem;
    font-weight: 600;
}

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

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

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

.legal-logos {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.legal-logo-item {
    padding: 0.75rem 1.5rem;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
}

.legal-logo-text {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1rem;
}

.legal-logo-badge {
    font-weight: 600;
    color: var(--color-text-light);
    font-size: 0.875rem;
}

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

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

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

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

/* Responsive */
@media (max-width: 968px) {
    .container-grid {
        grid-template-columns: 1fr;
    }
    
    .header-nav {
        display: none;
    }
    
    .btn-menu {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .prize-amount {
        font-size: 2rem;
    }
}

@media (max-width: 968px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-explore h3 {
        margin-top: 1.5rem;
    }
}

@media (max-width: 640px) {
    .header-container {
        padding: 1rem;
    }
    
    .hero-section {
        padding: 3rem 1.5rem;
    }
    
    .results-section {
        padding: 2rem 1rem;
    }
    
    .results-card,
    .jackpot-card {
        padding: 1.5rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .site-footer {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    .footer-container {
        gap: 2rem;
    }
    
    .quick-link-item {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-link-image {
        margin: 0 auto;
    }
    
    .legal-logos {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

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

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.6;
}

.responsible-gaming-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.content-block {
    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-block h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

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

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

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

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

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

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

.contact-block {
    background: linear-gradient(135deg, #f1f8e9 0%, #dcedc8 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-card {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all 0.3s;
}

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

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

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

.principle-card 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;
}

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

.warning-text {
    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-card {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    transition: all 0.3s;
}

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

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

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

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

.tool-card .btn-outline {
    width: 100%;
}

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

.warning-item {
    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-item div {
    flex: 1;
}

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

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

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

.support-card 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-item {
    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-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.tip-number {
    width: 40px;
    height: 40px;
    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-block .btn-primary {
    margin-top: 1.5rem;
}

/* Responsive Design for Responsible Gaming Page */
@media (max-width: 968px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .content-block h2 {
        font-size: 1.75rem;
    }
    
    .principles-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .support-resources {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-header {
        padding: 3rem 1.5rem;
    }
    
    .responsible-gaming-section {
        padding: 2rem 1rem;
    }
    
    .content-block {
        padding: 1.25rem;
    }
    
    .tip-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tip-number {
        margin: 0 auto;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

