* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dotted pattern background (similar to screenshot) */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(#222 1px, transparent 1px);
    background-size: 6px 6px;
    z-index: -1;
}

/* OVERLAY */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 900;
}

.overlay.show {
    opacity: 1;
    pointer-events: all;
}

/* HAMBURGER */
.hamburger {
    position: fixed;
    top: 16px;
    left: 16px;
    width: 32px;
    height: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 4px;
    border-radius: 2px;
    background: #fde933;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}

/* SIDE MENU */
.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 240px;
    background: rgba(0, 0, 0, 0.96);
    border-right: 1px solid #444;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 80px 24px 24px;
    z-index: 1000;
}

.side-menu.open {
    transform: translateX(0);
}

.side-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.side-menu a {
    color: #fde933;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.side-menu a:hover {
    text-decoration: underline;
}

/* MAIN WRAPPER */
.page-wrapper {
    width: 100%;
    padding: 40px 16px 32px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.card {
    max-width: 420px;
    width: 100%;
    text-align: center;
}

/* LOGO */
.logo {
    margin-bottom: 8px;
}

.logo img {
    max-width: 220px;
    /* adjust to match your logo */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.tagline {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #fff;
}

/* HERO IMAGE */
.hero-image {
    background: #000;
    margin-bottom: 16px;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* BUTTONS */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 16px;
    margin: 0 auto 10px;
    border-radius: 10px;
    border: 2px solid #fff;
    background: #fde933;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.btn:last-of-type {
    margin-bottom: 18px;
}

.btn:hover {
    filter: brightness(1.1);
}

/* Social Button Specifics */
.btn-whatsapp svg {
    fill: #000;
}

.btn-telegram svg {
    fill: #000;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(253, 233, 51, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(253, 233, 51, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(253, 233, 51, 0);
    }
}

/* CONTENT SECTION */
.content-section {
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid #333;
    padding: 18px 16px 16px;
    border-radius: 4px;
    margin-bottom: 10px;
    text-align: left;
}

.content-section h1,
.content-section h2,
.content-section h3 {
    font-weight: 700;
    color: #fde933;
    text-transform: uppercase;
}

.content-section h1 {
    font-size: 18px;
    margin-bottom: 8px;
}

.content-section h2 {
    font-size: 14px;
    margin: 12px 0 6px;
}

.content-section h3 {
    font-size: 12px;
    margin: 10px 0 4px;
}

.content-section p {
    font-size: 12px;
    line-height: 1.5;
    color: #ddd;
    margin-bottom: 6px;
}

.content-section ul,
.content-section ol {
    margin-bottom: 10px;
    padding-left: 20px;
}

.content-section li {
    font-size: 12px;
    line-height: 1.5;
    color: #ddd;
    margin-bottom: 4px;
}

.content-section h4 {
    font-weight: 700;
    color: #fde933;
    text-transform: uppercase;
    font-size: 11px;
    margin: 8px 0 4px;
}

.content-section h3 {
    color: #fffacd;
}

.content-section a {
    color: #fde933;
    text-decoration: underline;
}

.content-section a {
    color: #ddd;
}

.content-section b,
.content-section strong {
    font-size: 11px;
}

/* FOOTER */
footer {
    font-size: 10px;
    color: #777;
}

footer a {
    color: #fde933;
    text-decoration: none;
    margin-left: 4px;
}

footer a:hover {
    text-decoration: underline;
}

/* SMALLER SCREENS */
@media (max-width: 480px) {
    .card {
        max-width: 360px;
    }
}