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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 900px;
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.header {
    background: #1a472a;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.ladbrokes-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.age-logo {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.main-content {
    text-align: center;
    padding: 60px 30px;
}

.main-content h1 {
    font-size: 2.5em;
    color: #1a472a;
    margin-bottom: 20px;
}

.main-content p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.casino-button {
    display: inline-block;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    color: white;
    padding: 18px 50px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.casino-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 71, 42, 0.4);
}

.responsible-gambling {
    background: #f8f8f8;
    padding: 40px 30px;
    text-align: center;
}

.responsible-gambling h2 {
    color: #1a472a;
    margin-bottom: 30px;
    font-size: 1.8em;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.support-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.2s;
}

.support-logo:hover img {
    opacity: 0.8;
}

.warning-text {
    font-size: 0.95em;
    color: #666;
    margin-top: 20px;
    font-style: italic;
}

.download-section {
    padding: 30px;
    text-align: center;
    background: white;
}

.download-button {
    background: #4a90e2;
    color: white;
    padding: 15px 40px;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.download-button:hover {
    background: #357abd;
    transform: translateY(-2px);
}

.download-button:active {
    transform: translateY(0);
}

.footer {
    background: #1a472a;
    color: white;
    padding: 30px;
    text-align: center;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.separator {
    margin: 0 15px;
    opacity: 0.5;
}

.footer-text {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Content pages styling */
.content-page {
    padding: 40px 30px;
    line-height: 1.8;
}

.content-page h1 {
    color: #1a472a;
    font-size: 2.2em;
    margin-bottom: 30px;
    border-bottom: 3px solid #1a472a;
    padding-bottom: 15px;
}

.content-page h2 {
    color: #1a472a;
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-page section {
    margin-bottom: 30px;
}

.content-page p {
    color: #555;
    margin-bottom: 15px;
}

.content-page ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.content-page li {
    color: #555;
    margin-bottom: 10px;
}

.back-link {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.back-link a {
    color: #1a472a;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: opacity 0.2s;
}

.back-link a:hover {
    opacity: 0.7;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-content h1 {
        font-size: 2em;
    }

    .casino-button {
        padding: 15px 35px;
        font-size: 1.1em;
    }

    .ladbrokes-logo {
        height: 50px;
    }

    .content-page {
        padding: 30px 20px;
    }

    .content-page h1 {
        font-size: 1.8em;
    }
}
