html {
    height: 100%;
    box-sizing: border-box;
    font-size: 16px; /* Base font size for scalability */
}

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

body {
    position: relative;
    height: 100%;
    margin: 0;
    background: linear-gradient(#242625 25%, #303133 50%, #303133 50%, #242625 100%);
    color: #a4a8a4;
    font-size: 1rem; /* Relative unit */
    font-family: "Inter", sans-serif;
    line-height: 1.4;
    overflow-x: hidden;
}

a {
    color: #b1b4b1;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: #cbcdcb;
    outline: none; /* For modern browsers */
    text-decoration: underline;
}

strong {
    font-weight: 600;
    color: #00e676;
}

.container {
    max-width: 56rem; /* Flexible container size */
    margin: 0 auto;
    padding: 1rem;
    width: 100%;
}

.content {
    position: relative;
    width: 100%;
}

.content .header {
    padding: 4rem 1rem 0.5rem;
    text-align: center;
    z-index: 1;
}

.content .header p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #e5e5e5;
    margin-top: 0.5rem;
}

.content .main {
    position: relative;
    margin: 1rem auto;
    z-index: 1;
    background: #1e201f;
    border-radius: 0.7rem;
    padding: 2rem;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 3px 3px rgba(0, 0, 0, 0.5);
}

.content .main ul.m-list {
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.content .main ul.m-list li.bntl {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(36, 38, 37, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e5e5e5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.content .main ul.m-list li.bntl span:first-child {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

.content .main ul.m-list li.bntl span:last-child {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 82, 82, 0.15);
    color: #ff5252;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 82, 82, 0.35);
    transition: all 0.3s ease;
}

.content .main ul.m-list li.bntl span:last-child:before {
    content: "";
    display: inline-block;
    background: #ff5252;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    margin-right: 0.45rem;
    box-shadow: 0 0 8px #ff5252;
    animation: livePulse 1.5s infinite alternate;
}

@keyframes livePulse {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 12px #ff5252;
    }
}

.content .main ul.m-list li.bntl:hover {
    background: rgba(0, 230, 118, 0.12);
    border-color: #00e676;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 230, 118, 0.2);
}

.content .main ul.m-list li.bntl:hover span:last-child {
    background: rgba(0, 230, 118, 0.2);
    color: #00e676;
    border-color: rgba(0, 230, 118, 0.45);
}

.content .main ul.m-list li.bntl:hover span:last-child:before {
    background: #00e676;
    box-shadow: 0 0 8px #00e676;
    animation: livePulseGreen 1.5s infinite alternate;
}

@keyframes livePulseGreen {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 12px #00e676;
    }
}

.content .main .notice {
    background: #131514;
    padding: 1.5rem 1rem;
    border-radius: 0.5rem;
    display: flex;
    gap: 1rem;
}

.content .main .notice .start i {
    font-size: 1.5rem;
    color: #e5e5e5;
}

.content .main .notice .stop {
    margin-top: 0.2rem;
    font-size: 1rem;
    color: #e5e5e5;
}

.content .main .notice .stop .twitter {
    background: #00e676;
    border-radius: 0.3rem;
    padding: 0.4rem 0.6rem;
    display: inline-block;
    color: #131514;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.content .main .notice .stop .twitter:hover {
    background: #66ffa6;
}

.content .footer {
    text-align: center;
    margin: 2rem 0;
}

.faq img {
    display: block;
    margin: 1rem auto;
    max-width: 100%;
    height: auto;
}

@media (max-width: 700px) {
    body {
        font-size: 0.9rem;
    }

    .content .header p {
        font-size: 1rem;
    }

    .content .main ul.m-list li {
        padding: 0.6rem 0.8rem;
    }
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

h1 {
    color: #ffffff;
    font-size: 2.2rem;
    margin: 0.8rem 0;
}

h2 {
    color: #ffffff;
    font-size: 1.6rem;
    margin: 2rem 0 1rem 0;
    border-left: 4px solid #00e676;
    padding-left: 0.8rem;
}

h3 {
    color: #e5e5e5;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
}

p {
    font-family: 'Inter', sans-serif;
    line-height: 1.55;
    margin-bottom: 1.2rem;
    color: #a4a8a4;
}


/* Add this CSS to ensure responsive images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Optional: Center the image */
}
