html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,*:after,*:before {
    box-sizing: border-box;
}

body {
    background: #16110F;
    font-family: Arial, sans-serif;
    color: #fff;
}

.header {
    /*background: #1a1a1a;*/
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1000;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    color: #fbbf24;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.desktop-nav li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-nav li a:hover {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.desktop-nav li.active a {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.nav-icon {
    width: 20px;
    height: 20px;
    background: currentColor;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.casino-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
}

.sports-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E");
}

.live-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 14c1.66 0 2.99-1.34 2.99-3L15 5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 14 6.7 11H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z'/%3E%3C/svg%3E");
}

.promotions-icon {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-btn {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-btn:hover {
    border-color: #fbbf24;
    color: #fbbf24;
}

.signup-btn {
    background: #fbbf24;
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 10001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #1a1a1a;
    z-index: 20;
    transition: left 0.3s ease;
    padding-top: 80px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-nav-list {
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-item a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-item a:hover,
.mobile-nav-item.active a {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.mobile-auth {
    padding: 30px 20px;
}

.mobile-auth .login-btn {
    display: block;
    text-align: center;
    margin-bottom: 15px;
}

.mobile-auth .signup-btn {
    display: block;
    text-align: center;
}

/* Media Queries */
@media (max-width: 1064px) {
    .desktop-nav,
    .auth-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (min-width: 1025px) {
    .mobile-menu {
        display: none !important;
    }
}

.sports-banner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    min-height: 400px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    font-family: 'Arial', sans-serif;
    padding: 40px 0;
    border-radius: 20px;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    max-width: 600px;
    width: 100%;
}

.banner-subtitle {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #cccccc;
    margin-bottom: 10px;
    opacity: 0.9;
}

.banner-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.signup-btn {
    background: #ffeb3b;
    color: #1a1a1a;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.3);
}

.signup-btn:hover {
    background: #fdd835;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 235, 59, 0.4);
}

.info-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.banner-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

/* Декоративні елементи */
.banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 235, 59, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Адаптивність */
@media (max-width: 768px) {
    .sports-banner {
        min-height: 350px;
        flex-direction: column;
        text-align: center;
    }

    .banner-content {
        padding: 30px 20px;
        max-width: 100%;
    }

    .banner-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

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

    .banner-image {
        width: 100%;
        height: 400px;
        order: -1;
    }

    .signup-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .info-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 28px;
    }

    .banner-content {
        padding: 20px 15px;
    }

    .banner-cta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* Анімації */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner-content > * {
    animation: slideInLeft 0.8s ease-out forwards;
}

.banner-subtitle {
    animation-delay: 0.2s;
}

.banner-title {
    animation-delay: 0.4s;
}

.banner-cta {
    animation-delay: 0.6s;
}

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffeb3b;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ffeb3b;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    position: relative;
}

.footer-links a:hover {
    color: #ffeb3b;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #ffeb3b;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 10px;
}

.footer-bottom {
    border-top: 1px solid #404040;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #888888;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: #ffeb3b;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 235, 59, 0.3);
}

.footer-payment {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.payment-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-method:hover {
    background: rgba(255, 235, 59, 0.1);
    border-color: #ffeb3b;
    color: #ffeb3b;
}

/* Адаптивність */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-social {
        order: -1;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-payment {
        justify-content: center;
    }
}

/* Анімації */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease-out forwards;
}

.footer-column:nth-child(2) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.3s;
}

.popular-section {
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.crown-icon {
    font-size: 24px;
    color: #ffeb3b;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.sports-nav {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.sports-nav::-webkit-scrollbar {
    height: 4px;
}

.sports-nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.sports-nav::-webkit-scrollbar-thumb {
    background: #ffeb3b;
    border-radius: 2px;
}

.sport-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sport-tab.active {
    background: #ffeb3b;
    color: #1a1a1a;
    border-color: #ffeb3b;
}

.sport-tab:hover {
    background: rgba(255, 235, 59, 0.1);
    border-color: rgba(255, 235, 59, 0.3);
}

.sport-tab.active:hover {
    background: #fdd835;
}

.sport-emoji {
    font-size: 16px;
}

.matches-container {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.match-row {
    background: #2a2a2a;
    padding: 16px;
    display: grid;
    grid-template-columns: 200px 80px auto 120px 120px;
    gap: 15px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.match-row:hover {
    background: #333333;
    border-left-color: #ffeb3b;
}

.match-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.league-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #888888;
    margin-bottom: 4px;
}

.country-flag {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    background: #555;
}

.teams {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.team-emoji {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.match-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.time {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.date {
    font-size: 12px;
    color: #888888;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #ffeb3b;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #ffeb3b;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.match-markets {
    display: flex;
    gap: 10px;
}

.market-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.market-label {
    font-size: 11px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.market-options {
    display: flex;
    gap: 5px;
}

.market-option {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    min-width: 35px;
    text-align: center;
    transition: all 0.2s ease;
}

.market-option:hover {
    background: #ffeb3b;
    color: #1a1a1a;
    border-color: #ffeb3b;
}

.market-value {
    display: block;
    font-size: 11px;
    color: #cccccc;
    margin-top: 2px;
}

.additional-markets {
    display: flex;
    align-items: center;
    gap: 10px;
}

.more-markets {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12px;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.2s ease;
}

.more-markets:hover {
    background: rgba(255, 235, 59, 0.1);
    border-color: rgba(255, 235, 59, 0.3);
    color: #ffeb3b;
}

/* Адаптивність */
@media (max-width: 768px) {
    .popular-section {
        padding: 20px 15px;
    }

    .match-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px 12px;
    }

    .match-info {
        order: 1;
    }

    .match-time {
        order: 2;
        align-self: start;
        flex-direction: row;
        justify-content: space-between;
    }

    .match-markets {
        order: 3;
        flex-wrap: wrap;
        gap: 8px;
    }

    .additional-markets {
        order: 4;
        justify-content: center;
    }

    .teams {
        gap: 6px;
    }

    .team {
        font-size: 15px;
    }

    .market-options {
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 20px;
    }

    .sports-nav {
        gap: 3px;
    }

    .sport-tab {
        padding: 8px 12px;
        font-size: 13px;
    }

    .match-row {
        padding: 14px 10px;
    }

    .team {
        font-size: 14px;
    }

    .market-option {
        padding: 5px 8px;
        min-width: 30px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

h2 {
    color: #fbbf24;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 40px;
    border-bottom: 2px solid #fbbf24;
    padding-bottom: 10px;
}

h2:first-child {
    margin-top: 0;
}

h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 30px;
}

p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

strong {
    color: #fbbf24;
    font-weight: bold;
}

ul {
    margin: 20px 0;
    padding-left: 25px;
}

ul li {
    margin-bottom: 10px;
    color: #e0e0e0;
    position: relative;
}

ul li::marker {
    color: #fbbf24;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: #262626;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

table tbody tr:first-child {
    background: #333333;
}

table tbody tr:first-child td {
    font-weight: bold;
    color: #fbbf24;
    text-align: center;
}

table td {
    padding: 15px 12px;
    border-bottom: 1px solid #404040;
    vertical-align: top;
}

table td p {
    margin: 0;
}

table tbody tr:not(:first-child):hover {
    background: #2d2d2d;
}

table tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive Tables */
@media (max-width: 768px) {
    .table-wrapper {
        overflow-x: auto;
        margin: 20px -20px;
        padding: 0 20px;
        scrollbar-width: thin;
        scrollbar-color: #fbbf24 #262626;
    }

    .table-wrapper::-webkit-scrollbar {
        height: 8px;
    }

    .table-wrapper::-webkit-scrollbar-track {
        background: #262626;
        border-radius: 4px;
    }

    .table-wrapper::-webkit-scrollbar-thumb {
        background: #fbbf24;
        border-radius: 4px;
    }

    table {
        min-width: 600px;
        margin: 10px 0;
    }

    table td {
        padding: 12px 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {


    .container {
        padding: 0 10px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 15px;
    }

    table {
        min-width: 500px;
    }

    table td {
        padding: 10px 8px;
        font-size: 13px;
    }

    ul {
        padding-left: 20px;
    }
}

/* Additional responsive improvements */
@media (max-width: 320px) {
    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }

    table td {
        padding: 8px 6px;
        font-size: 12px;
    }
}