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

:root {
    --bg-dark: #1a1a1a;
    --bg-darker: #121212;
    --gold: #fdd700;
    --gold-dark: #d4b000;
    --text-white: #ffffff;
    --text-gray: #e0e0e0;
    --text-light-gray: #b0b0b0;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue',
        Arial, sans-serif;
    background: var(--bg-darker);
    color: var(--text-white);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100%;
}

* {
    -webkit-tap-highlight-color: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Header */
.header {
    padding: 20px 0;
    margin-bottom: 40px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: var(--transition);
}

.logo-link:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.logo-link:active {
    transform: scale(0.98);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo-img {
    width: 60px;
    height: 60px;
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(253, 215, 0, 0.4));
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--gold);
    letter-spacing: 2px;
    font-family: 'Georgia', serif;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 40px 0;
}

.registration-section {
    width: 100%;
    max-width: 500px;
    text-align: center;
    margin: auto;
    align-self: center;
}

.main-title {
    font-size: 42px;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
    text-shadow: 0 0 10px rgba(253, 215, 0, 0.3);
}

.subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Form */
.registration-form {
    background: var(--bg-dark);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(253, 215, 0, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

.form-group input[type='text'],
.form-group input[type='email'],
.form-group input[type='password'] {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-darker);
    border: 1px solid rgba(253, 215, 0, 0.3);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 16px;
    transition: var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

/* Предотвращение zoom на iOS при фокусе */
@media (max-width: 768px) {
    .form-group input[type='text'],
    .form-group input[type='email'],
    .form-group input[type='password'] {
        font-size: 16px !important;
    }
}

.form-group input[type='text']:focus,
.form-group input[type='email']:focus,
.form-group input[type='password']:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(253, 215, 0, 0.1);
}

.form-group input::placeholder {
    color: var(--text-light-gray);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type='checkbox'] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--gold);
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--gold);
    text-decoration: underline;
    transition: var(--transition);
}

.checkbox-group a:hover {
    color: var(--gold-dark);
}

.btn-primary {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--bg-darker);
    border: none;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 215, 0, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

@media (hover: none) and (pointer: coarse) {
    .btn-primary:hover {
        transform: none;
    }

    .btn-primary:active {
        background: var(--gold-dark);
        transform: scale(0.98);
    }

    .game-card:hover {
        transform: none;
    }

    .game-card:active {
        transform: scale(0.98);
    }

    .game-btn:hover {
        transform: none;
    }

    .game-btn:active {
        transform: scale(0.98);
    }

    .hero-cta:hover {
        transform: none;
    }

    .hero-cta:active {
        transform: scale(0.98);
    }
}

/* Benefits */
.benefits {
    margin-top: 30px;
}

.benefits ul {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.benefits li {
    padding: 10px 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 25px;
}

.benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 18px;
}

/* Footer */
.footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.disclaimer {
    margin-bottom: 20px;
}

.disclaimer p {
    font-size: 12px;
    color: var(--text-light-gray);
    line-height: 1.6;
}

.disclaimer a {
    color: var(--gold);
    text-decoration: underline;
}

.footer-links {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

.age-restriction {
    margin-top: 15px;
}

.age-restriction p {
    font-size: 12px;
    color: var(--text-light-gray);
    font-weight: 500;
}

/* Hero Banner Styles for main.php */
.hero-banner {
    position: relative;
    width: 100%;
    height: 600px;
    margin-bottom: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #4a148c 0%,
        #7b1fa2 30%,
        #1a237e 70%,
        #0d47a1 100%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(253, 215, 0, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(253, 215, 0, 0.1) 0%,
            transparent 50%
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    z-index: 1;
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.floating-coin {
    position: absolute;
    font-size: 40px;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(253, 215, 0, 0.5));
}

.coin-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.coin-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.coin-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.coin-4 {
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
}

.coin-5 {
    top: 50%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    text-shadow: 0 0 20px rgba(253, 215, 0, 0.5);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 30px;
}

.hero-benefits {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-benefits li {
    color: var(--text-white);
    font-size: 16px;
}

.hero-cta {
    display: inline-block;
    padding: 18px 50px;
    background: var(--gold);
    color: var(--bg-darker);
    border-radius: var(--border-radius);
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.hero-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(253, 215, 0, 0.5);
}

/* Games Section */
.games-section {
    margin: 60px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 30px;
    font-family: 'Georgia', serif;
    text-align: center;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    width: 100%;
}

.game-card {
    background: var(--bg-dark);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(253, 215, 0, 0.2);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-height: 350px;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(253, 215, 0, 0.4);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(253, 215, 0, 0.05) 0%,
        transparent 100%
    );
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.game-card:hover::before {
    opacity: 1;
}

.game-image {
    width: 100%;
    flex: 1;
    min-height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(253, 215, 0, 0.2) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 70% 70%,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 50%
        );
    z-index: 0;
}

.game-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 0;
}

.game-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    background: var(--bg-dark);
    flex-shrink: 0;
    min-height: 120px;
}

.game-name {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.game-btn {
    padding: 14px 24px;
    background: var(--gold);
    color: var(--bg-darker);
    border: 2px solid var(--gold);
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    box-shadow:
        0 4px 15px rgba(253, 215, 0, 0.5),
        0 0 20px rgba(253, 215, 0, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-btn:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(253, 215, 0, 0.7),
        0 0 30px rgba(253, 215, 0, 0.4);
    color: var(--bg-darker);
}

.game-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(253, 215, 0, 0.5);
}

/* Responsive Styles */

/* Планшеты и небольшие ноутбуки */
@media (max-width: 1024px) {
    .container {
        padding: 15px;
    }

    .hero-banner {
        height: 500px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }
}

/* Планшеты */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        width: 100%;
        max-width: 100%;
    }

    .header {
        padding: 15px 0;
        margin-bottom: 30px;
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }

    .logo-text {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .main-content {
        padding: 30px 0;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .main-content .registration-section {
        align-self: center;
        margin: 0 auto;
    }

    .hero-banner {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        float: none;
        display: block;
    }

    .games-section {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        float: none;
        display: block;
        clear: both;
    }

    .games-grid {
        width: 100% !important;
        max-width: 100% !important;
    }

    .main-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .registration-form {
        padding: 30px 20px;
        margin-bottom: 25px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input[type='text'],
    .form-group input[type='email'],
    .form-group input[type='password'] {
        padding: 12px 14px;
        font-size: 15px;
    }

    .btn-primary {
        padding: 14px;
        font-size: 16px;
    }

    .benefits {
        margin-top: 25px;
    }

    .benefits li {
        padding: 8px 0;
        font-size: 14px;
    }

    .hero-banner {
        height: 450px;
        margin-bottom: 40px;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .hero-benefits {
        gap: 20px;
        margin-bottom: 30px;
    }

    .hero-benefits li {
        font-size: 14px;
    }

    .hero-cta {
        padding: 16px 40px;
        font-size: 18px;
    }

    .floating-coin {
        font-size: 30px;
    }

    .games-section {
        margin: 40px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }

    .game-info {
        padding: 15px;
    }

    .game-name {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .game-btn {
        padding: 12px 20px;
        font-size: 15px;
        box-shadow:
            0 4px 12px rgba(253, 215, 0, 0.5),
            0 0 15px rgba(253, 215, 0, 0.3);
    }

    .footer {
        margin-top: 40px;
        padding-top: 25px;
    }

    .footer-links {
        gap: 20px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .disclaimer p {
        font-size: 11px;
    }

    .age-restriction p {
        font-size: 11px;
    }
}

/* Мобильные телефоны */
@media (max-width: 480px) {
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .container {
        padding: 10px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    main,
    section {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        display: block !important;
        clear: both !important;
    }

    .header {
        padding: 10px 0;
        margin-bottom: 20px;
        width: 100%;
    }

    .logo {
        gap: 10px;
    }

    .logo-img {
        width: 45px;
        height: 45px;
    }

    .logo-text {
        font-size: 18px;
        letter-spacing: 0.5px;
    }

    .main-content {
        padding: 20px 0;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        display: flex;
    }

    .main-content .registration-section {
        align-self: center;
        margin: 0 auto;
    }

    .hero-banner {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 30px;
        order: 1;
        float: none;
        display: block;
    }

    .games-section {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0;
        order: 2;
        float: none;
        display: block;
        clear: both;
    }

    .section-title {
        width: 100% !important;
        max-width: 100% !important;
    }

    .games-grid {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .main-title {
        font-size: 26px;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .registration-section {
        max-width: 100%;
        margin: 0 auto;
        align-self: center;
    }

    .registration-form {
        padding: 25px 15px;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .form-group input[type='text'],
    .form-group input[type='email'],
    .form-group input[type='password'] {
        padding: 11px 12px;
        font-size: 14px;
    }

    .checkbox-group {
        gap: 8px;
    }

    .checkbox-group input[type='checkbox'] {
        width: 18px;
        height: 18px;
        margin-top: 1px;
    }

    .checkbox-group label {
        font-size: 12px;
        line-height: 1.4;
    }

    .btn-primary {
        padding: 13px;
        font-size: 15px;
    }

    .benefits {
        margin-top: 20px;
    }

    .benefits ul {
        text-align: center;
    }

    .benefits li {
        padding: 6px 0;
        font-size: 13px;
        padding-left: 20px;
    }

    .benefits li:before {
        font-size: 16px;
    }

    .hero-banner {
        height: 400px;
        margin-bottom: 30px;
        border-radius: 8px;
    }

    .hero-content {
        padding: 25px 10px;
        width: 100%;
        max-width: 100%;
    }

    .hero-benefits {
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 25px;
        align-items: center;
    }

    .hero-benefits li {
        font-size: 13px;
    }

    .hero-cta {
        padding: 14px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
    }

    .floating-coin {
        font-size: 24px;
    }

    .coin-1,
    .coin-2,
    .coin-3,
    .coin-4,
    .coin-5 {
        display: none;
    }

    .games-section {
        margin: 30px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
    }

    .games-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin-bottom: 30px;
        width: 100%;
        max-width: 100%;
        display: grid;
    }

    .game-card {
        border-radius: 12px;
    }

    .game-image {
        font-size: 56px;
    }

    .game-info {
        padding: 15px;
    }

    .game-name {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .game-btn {
        padding: 12px 18px;
        font-size: 14px;
        box-shadow:
            0 4px 12px rgba(253, 215, 0, 0.6),
            0 0 15px rgba(253, 215, 0, 0.4);
        letter-spacing: 0.5px;
    }

    .footer {
        margin-top: 30px;
        padding-top: 20px;
    }

    .disclaimer {
        margin-bottom: 15px;
    }

    .disclaimer p {
        font-size: 10px;
        line-height: 1.5;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .age-restriction {
        margin-top: 12px;
    }

    .age-restriction p {
        font-size: 10px;
    }
}

/* Очень маленькие экраны */
@media (max-width: 360px) {
    .main-title {
        font-size: 22px;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 20px;
    }

    .registration-form {
        padding: 20px 12px;
    }

    .logo-text {
        font-size: 16px;
    }
}

/* Ландшафтная ориентация на мобильных */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-banner {
        height: 350px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-benefits {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* Стили для страниц контента (cookies.php, privacy.php) */
@media (max-width: 768px) {
    .content-page {
        padding: 30px 15px;
    }

    .content-page h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .content-page h2 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .content-page h3 {
        font-size: 18px;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .content-page p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .content-page ul,
    .content-page ol {
        padding-left: 20px;
        margin-bottom: 15px;
    }

    .content-page li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .last-updated {
        font-size: 12px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .content-page {
        padding: 20px 10px;
    }

    .content-page h1 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .content-page h2 {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .content-page h3 {
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .content-page p {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .content-page ul,
    .content-page ol {
        padding-left: 18px;
        margin-bottom: 12px;
    }

    .content-page li {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .last-updated {
        font-size: 11px;
        margin-bottom: 15px;
    }
}
