/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

/* Cookies Banner */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 20px;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookies-banner.show {
    transform: translateY(0);
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookies-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #f39c12;
}

.cookies-text p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

.cookies-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-accept-all,
.btn-essential-only {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-accept-all {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.btn-accept-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

.btn-essential-only {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-essential-only:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.age-verification h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.age-verification h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.age-verification p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-age-yes,
.btn-age-no {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-age-yes {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.btn-age-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

.btn-age-no {
    background: #e74c3c;
    color: white;
}

.btn-age-no:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.access-denied {
    color: #e74c3c;
}

.access-denied h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* Game Modal */
.game-modal-content {
    max-width: 90%;
    width: 1000px;
    height: 80vh;
    padding: 0;
    position: relative;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.game-iframe-container {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

#gameIframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    padding: 15px 0;
    top: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #f39c12;
}

.user-actions {
    display: flex;
    gap: 15px;
}

.btn-login,
.btn-register {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-login:hover {
    background: white;
    color: #1a1a2e;
}

.btn-register {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    padding: 120px 0 80px;
    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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>')
        repeat;
    opacity: 0.3;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Features Section */
.features {
    background: #e8f5e8;
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Games Section */
.games-section {
    background: #e8f5e8;
    padding: 80px 0;
}

.games-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
}

.search-container {
    text-align: center;
    margin-bottom: 50px;
}

.search-input {
    width: 100%;
    max-width: 500px;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #27ae60;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.game-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.game-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    font-size: 4rem;
    color: white;
}

.game-card h3 {
    padding: 20px 20px 10px;
    color: #2c3e50;
    font-size: 1.3rem;
    text-align: center;
}

.btn-play {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-play:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    transform: translateY(-2px);
}

/* Featured Game */
.featured-game {
    background: #e8f5e8;
    padding: 80px 0;
}

.featured-game h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

.featured-game-container {
    max-width: 800px;
    margin: 0 auto;
}

.game-preview {
    background: white;
    border-radius: 15px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.preview-placeholder {
    font-size: 2rem;
    color: #666;
}

/* Leaderboard */
.leaderboard {
    background: #e8f5e8;
    padding: 80px 0;
}

.leaderboard h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.leaderboard p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.leaderboard-card {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.leaderboard-entry {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.leaderboard-entry:last-child {
    border-bottom: none;
}

.leaderboard-entry.champion {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    margin: -30px -30px 20px;
    padding: 30px;
    border-radius: 15px 15px 0 0;
}

.rank-icon {
    font-size: 2rem;
    margin-right: 20px;
    width: 50px;
    text-align: center;
}

.player-info {
    flex: 1;
}

.player-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.player-info p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.score {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Journey Section */
.journey {
    background: #e8f5e8;
    padding: 80px 0;
}

.journey h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: left;
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step p {
    color: #666;
    line-height: 1.6;
}

.journey-image {
    text-align: center;
}

.treasure-image {
    font-size: 8rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #e8f5e8, #f4f1de);
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff3cd;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card p {
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    font-size: 2rem;
    background: #f39c12;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-info h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-cta {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.4);
    display: inline-block;
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.6);
}

/* About Section */
.about {
    background: #e8f5e8;
    padding: 80px 0;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h3 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text ul {
    color: #666;
    line-height: 2;
    padding-left: 20px;
}

.about-text ul li {
    margin-bottom: 10px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    background: #e8f5e8;
    padding: 80px 0;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-details p {
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-details span {
    color: #999;
    font-size: 0.9rem;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-element {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-element input,
.contact-form-element select,
.contact-form-element textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form-element input:focus,
.contact-form-element select:focus,
.contact-form-element textarea:focus {
    border-color: #27ae60;
}

.contact-form-element textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #229954, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

/* Privacy Section */
.privacy {
    background: #e8f5e8;
    padding: 80px 0;
}

.privacy h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

.privacy-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy-content h3 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.privacy-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.privacy-content ul {
    color: #666;
    line-height: 2;
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-content ul li {
    margin-bottom: 10px;
}

/* Terms Section */
.terms {
    background: #e8f5e8;
    padding: 80px 0;
}

.terms h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

.terms-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.terms-content h3 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.terms-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.terms-content ul {
    color: #666;
    line-height: 2;
    padding-left: 20px;
    margin-bottom: 20px;
}

.terms-content ul li {
    margin-bottom: 10px;
}

/* Footer */
.footer-banner {
    background: #e74c3c;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-banner p {
    margin: 5px 0;
    font-weight: 500;
}

.footer-main {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-links h4 {
    margin-bottom: 20px;
    color: #f39c12;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f39c12;
}

.responsible-gaming {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.responsible-gaming a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.responsible-gaming a:hover {
    transform: scale(1.05);
}

.responsible-gaming img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.responsible-gaming span {
    background: white;
    color: #2c3e50;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-icons {
    font-size: 1.5rem;
}

.footer-bottom p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .features-grid,
    .games-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .journey-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .responsible-gaming {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .responsible-gaming img {
        height: 35px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .age-buttons {
        flex-direction: column;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 20px;
    }

    .game-modal-content {
        width: 95%;
        height: 70vh;
    }

    /* Cookies Banner Mobile */
    .cookies-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookies-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-accept-all,
    .btn-essential-only {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .features,
    .games-section,
    .featured-game,
    .leaderboard,
    .journey,
    .testimonials,
    .cta,
    .about,
    .contact,
    .privacy,
    .terms {
        padding: 60px 0;
    }

    .features h2,
    .games-section h2,
    .featured-game h2,
    .leaderboard h2,
    .journey h2,
    .testimonials h2,
    .cta h2,
    .about h2,
    .contact h2,
    .privacy h2,
    .terms h2 {
        font-size: 2rem;
    }

    .privacy-content,
    .terms-content {
        padding: 20px;
    }

    .responsible-gaming img {
        height: 30px;
    }
}
