/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(90deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    text-decoration: none;
    color: white;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 0.9rem;
    color: #e0e7ff;
    font-style: italic;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a:hover {
    color: #ffd700;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    color: #f0f0f0;
    max-width: 600px;
    margin: 0 auto;
}

/* Casino Offers Section */
.casino-offers {
    padding: 4rem 0;
    background: linear-gradient(45deg, #f0f2f5 0%, #e6e9ef 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3c72;
    font-weight: 700;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.offer-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #ffd700;
}

.offer-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 1.5rem;
    position: relative;
    text-align: center;
}

.offer-header h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.offer-badge {
    background: #ffd700;
    color: #1e3c72;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 10px;
}

.offer-content {
    padding: 2rem;
}

.offer-bonus {
    text-align: center;
    margin-bottom: 1.5rem;
}

.bonus-amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e3c72;
    display: block;
}

.bonus-text {
    color: #666;
    font-size: 1rem;
}

.offer-features {
    list-style: none;
    margin-bottom: 2rem;
}

.offer-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.offer-features li:last-child {
    border-bottom: none;
}

.offer-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.offer-footer {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #20c997, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40,167,69,0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.terms {
    font-size: 0.8rem;
    color: #666;
    margin-top: 1rem;
}

/* Play Safely Section */
.play-safely {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
}

.safety-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.safety-header {
    margin-bottom: 2rem;
}

.age-restriction {
    background: #dc3545;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(220,53,69,0.3);
}

.safety-header h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
}

.safety-text {
    margin-bottom: 3rem;
}

.safety-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #444;
}

.safety-resources {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.resource-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #1e3c72;
    padding: 1rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 120px;
}

.resource-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.resource-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.resource-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #e0e7ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    text-align: center;
}

.disclaimer {
    font-size: 0.9rem;
    color: #cbd5e0;
    margin-top: 1rem;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.modal-overlay.show {
    display: flex;
    background: rgba(0,0,0,0.8);
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: scale(0.7);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 2rem;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    color: white;
    margin-bottom: 1rem;
}

.modal-header .age-icon {
    background: #dc3545;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto;
    border: 3px solid white;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 1rem;
    z-index: 999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-link {
    color: #ffd700;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .offer-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .resource-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .resource-link {
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.1rem;
    color: #f0f0f0;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
    background: linear-gradient(45deg, #f0f2f5 0%, #e6e9ef 100%);
}

/* About Page Styles */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-section h2 {
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #ffd700;
    padding-bottom: 0.5rem;
}

.about-section p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.about-section a {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 500;
}

.about-section a:hover {
    text-decoration: underline;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #1e3c72;
}

.feature-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.commitment-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.commitment-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.commitment-item h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-info h2 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.contact-info p {
    line-height: 1.7;
    color: #444;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
}

.contact-item ul {
    list-style: none;
    padding-left: 0;
}

.contact-item ul li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 20px;
}

.contact-item ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1e3c72;
}

.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-section h2 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e3c72;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3c72;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #1e3c72;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.important-notice {
    background: linear-gradient(135deg, #fff5cd 0%, #ffeaa7 100%);
    padding: 3rem 0;
    border-top: 3px solid #ffd700;
}

.notice-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.notice-content h2 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.notice-content p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.help-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #1e3c72;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.help-link:hover {
    transform: translateY(-3px);
}

.help-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.nav-list a.active {
    color: #ffd700;
}

.nav-list a.active::after {
    width: 100%;
}

/* Policy Pages Styles */
.policy-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.policy-toc {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.policy-toc h2 {
    color: #1e3c72;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.policy-toc ul {
    list-style: none;
    padding: 0;
}

.policy-toc li {
    margin-bottom: 0.5rem;
}

.policy-toc a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 0;
    display: block;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.policy-toc a:hover {
    color: #1e3c72;
    background: #f8f9fa;
    padding-left: 1rem;
}

.policy-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    color: #1e3c72;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #ffd700;
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.policy-section h4 {
    color: #1e3c72;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.policy-section p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #444;
}

.policy-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-section a {
    color: #1e3c72;
    text-decoration: none;
    font-weight: 500;
}

.policy-section a:hover {
    text-decoration: underline;
}

.policy-section strong {
    color: #1e3c72;
}

/* Cookie Policy Tables */
.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background: #1e3c72;
    color: white;
    font-weight: 600;
}

.cookie-table tr:hover {
    background: #f8f9fa;
}

.browser-instructions {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.browser-instructions h4 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.browser-instructions h4:first-child {
    margin-top: 0;
}

.browser-instructions p {
    color: #666;
    font-family: 'Courier New', monospace;
    background: white;
    padding: 0.5rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* Responsible Gambling Page Styles */
.age-warning {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.warning-signs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.warning-category {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #dc3545;
}

.warning-category h3 {
    color: #dc3545;
    margin-bottom: 1rem;
}

.warning-category ul {
    list-style: none;
    padding: 0;
}

.warning-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f1f1;
    position: relative;
    padding-left: 20px;
}

.warning-category li:last-child {
    border-bottom: none;
}

.warning-category li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip-card {
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #28a745;
    text-align: center;
}

.tip-card h3 {
    color: #28a745;
    margin-bottom: 1rem;
}

.help-services {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.help-service {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #17a2b8;
}

.help-service h3 {
    color: #17a2b8;
    margin-bottom: 1rem;
}

.help-service strong {
    color: #1e3c72;
}

.exclusion-options {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.exclusion-option {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ffc107;
}

.exclusion-option h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.exclusion-option ul {
    margin-top: 1rem;
}

.resources-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    text-align: center;
}

.resources-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resources-grid .resource-link {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1e3c72;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.resources-grid .resource-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.resources-grid .resource-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 1rem;
}

.resource-info h3 {
    color: #1e3c72;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.resource-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .help-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .help-link {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-section {
        padding: 1.5rem;
    }
    
    .contact-info,
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .policy-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .policy-toc {
        position: static;
        order: 2;
    }
    
    .policy-content {
        order: 1;
        padding: 1.5rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem;
    }
    
    .warning-signs {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid .resource-link {
        padding: 1.5rem;
    }
    
    .resources-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .casino-offers {
        padding: 2rem 0;
    }
    
    .play-safely {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .safety-header h2 {
        font-size: 2rem;
    }
    
    .offer-content {
        padding: 1.5rem;
    }
    
    .bonus-amount {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .main-content {
        padding: 2rem 0;
    }
    
    .important-notice {
        padding: 2rem 0;
    }
} 