/* Reset & Base Styles */
@font-face {
  font-family: 'MyFont';
  src: url('myfont.woff2') format('woff2');
  font-display: swap;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #001133, #ffd700);
    /* dark blue to gold */
    color: #000000;
    overflow-x: hidden;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Headings */
h1 {
    position: relative; /* Required for ::before shimmer */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 10px;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;

    background: linear-gradient(135deg, #001133, #002244, #001133);
    border: 6px double #FFD700;
    border-radius: 25px;

    text-shadow:
        1px 1px 0 #000000,
        2px 2px 0 #333333;

    box-shadow:
        0 0 10px rgba(0, 0, 0, 0.15),
        inset 0 0 6px rgba(0, 0, 0, 0.03);

    animation: dancingShadow 3s infinite ease-in-out alternate;
    overflow: hidden; /* hide shimmer overflow */
}

/* SHIMMER LAYER */
h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shimmer 3s infinite;
    z-index: 1;
    pointer-events: none;
}

/* Keep h1 text above shimmer */
h1 span {
    position: relative;
    z-index: 2;
}

/* SHIMMER ANIMATION */
@keyframes shimmer {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}


/* Optional: Dancing Shadow (if you want it subtle) */
@keyframes dancingShadow {
    0% {
        text-shadow: 1px 1px 0 #000, 2px 2px 0 #333;
    }

    100% {
        text-shadow: 2px 2px 2px #000, 3px 3px 2px #222;
    }
}



@keyframes dancingShadow {
    0% {
        text-shadow: 4px 4px 8px #8B0000, -4px -4px 8px #F2C94C;
        /* Shadows in different directions */
    }

    20% {
        text-shadow: -5px 5px 10px #F2C94C, 5px -5px 10px #8B0000;
    }

    40% {
        text-shadow: 3px -3px 6px #8B0000, -3px 3px 6px #F2C94C;
    }

    60% {
        text-shadow: -7px -7px 15px #F2C94C, 7px 7px 15px #8B0000;
    }

    80% {
        text-shadow: 5px 5px 12px #8B0000, -5px -5px 12px #F2C94C;
    }

    100% {
        text-shadow: 4px 4px 8px #8B0000, -4px -4px 8px #F2C94C;
    }
}



h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    text-align: center;
}

@keyframes pulseHeadline {
    0% {
        transform: scale(1);
        text-shadow: 0 4px 12px rgba(0, 0, 120, 0.5);
    }

    100% {
        transform: scale(1.05);
        text-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
    }
}

h2 {
    font-size: 2rem;
    color: #002266;
    /* Very dark blue */
    text-shadow: 0 2px 5px rgba(0, 34, 102, 0.5);
}

h3 {
    font-size: 1.6rem;
    color: #003399;
    /* Standard dark blue */
    text-shadow: 0 2px 5px rgba(0, 51, 153, 0.4);
}

h4 {
    font-size: 1.2rem;
    color: #4d6dcc;
    /* Slightly lighter blue */
    text-shadow: 0 2px 5px rgba(77, 109, 204, 0.3);
}

a {
    color: #002266;
    /* Matches h2 */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 34, 102, 0.3);
}

a:hover {
    color: #000c66;
    /* Richer navy on hover */
}

/* Paragraphs */
p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}


/* Header */

.site-header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #ffffff;
    z-index: 99;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 50px;
    width: auto; /* maintain aspect ratio */
    max-width: 180px; /* optional max width for large screens */
}

.hamburger {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: translateY(-50%) scale(1.1);
}

.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 3px;
    animation: rainbowGlow 1.2s infinite;
    transition: all 0.3s ease-in-out;
}

@keyframes rainbowGlow {
    0% {
        background: #ff0000;
        box-shadow: 0 0 8px #ff0000;
    }

    16% {
        background: #ff9900;
        box-shadow: 0 0 8px #ff9900;
    }

    33% {
        background: #ffff00;
        box-shadow: 0 0 8px #ffff00;
    }

    50% {
        background: #33ff00;
        box-shadow: 0 0 8px #33ff00;
    }

    66% {
        background: #00ccff;
        box-shadow: 0 0 8px #00ccff;
    }

    83% {
        background: #9900ff;
        box-shadow: 0 0 8px #9900ff;
    }

    100% {
        background: #ff007f;
        box-shadow: 0 0 8px #ff007f;
    }
}

.hamburger.active span {
    animation: none;
}

.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3) {
    background: #ff3c00;
    box-shadow: 0 0 12px #ff3c00;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}

.hamburger:not(.active) span {
    animation: rainbowGlow 1.2s infinite;
    transition: all 0.3s ease-in-out;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 998;
}

/* Drawer Menu */
.drawer-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    padding: 80px 20px 20px;
    transition: left 0.3s ease;
    z-index: 999;
}

.drawer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-menu li {
    margin-bottom: 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.drawer-menu li:hover {
    background-color: #FFD700;
    /* gold highlight */
    color: #001133;
    /* ensure text stays readable */
}


.drawer-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 20px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #222;
    cursor: pointer;
}

/* TITLE */
.headline-section {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    position: relative;
}

@media (max-width: 768px) {
    .headline-section {
        padding: 10px 20px;
    }
}

/* HERO SECTION */


@media (max-width: 768px) {
    .hero {
        height: 25vh;
        /* smaller height on mobile */
        padding: 0 15px;
    }
}

.circle-button i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    width: 100%;
    height: 100%;
}


.circle-button.telegram {
    background: #229ED9;
    box-shadow: 0 0 12px rgba(34, 158, 217, 0.6);
}

.circle-button.whatsapp {
    background: #25D366;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.6);
}

.circle-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* REGISTER PAGE ONLY */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
}

.hero-btn {
    padding: 20px 60px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.4s ease;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #4de07d, #1ebc64);
    color: #ffffff;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn:hover {
    box-shadow: 0 0 35px rgba(37, 211, 102, 0.9);
    transform: scale(1.05);
}

.telegram-btn {
    background: linear-gradient(135deg, #2aa6ff, #007bb6);
    color: #ffffff;
    box-shadow: 0 0 25px rgba(42, 166, 255, 0.6);
}

.telegram-btn:hover {
    box-shadow: 0 0 35px rgba(42, 166, 255, 0.9);
    transform: scale(1.05);
}

.hero-btn i {
    font-size: 24px;
}

.arrow-hand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 5%;
    left: 90%;
    transform: rotate(40deg);
    z-index: 10;
}

.arrow-hand span {
    font-family: 'Gloria Hallelujah', cursive;
    color: #fff;
    background: linear-gradient(135deg, #ff3c3c, #ff7b00); /* Vivid red-orange gradient */
    padding: 10px 14px;
    border-radius: 50px;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    transform: translateX(-10px) translateY(15px) rotate(-15deg);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    width: 150px;
}

.arrow-hand img {
    width: 80px;
    height: auto; /* maintain aspect ratio */
    transform: rotate(-70deg);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
    max-height: 100px; /* optional control for large screens */
}

@media (max-width: 768px) {
    .hero-btn {
        padding: 16px 30px;
        font-size: 1rem;
        border-radius: 40px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    }

    .hero-btn i {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .arrow-hand {
        top: 0%;
        left: 80%;
        transform: rotate(30deg);
    }

    .arrow-hand span {
        font-size: 0.6rem;
        padding: 5px;
        width: 120px;
        transform: translateX(-8px) translateY(12px) rotate(-10deg);
    }

    .arrow-hand img {
        width: 60px;
        transform: rotate(-60deg);
    }
}


/* REGISTER PAGE ONLY */

/* PLAY NOW SECTION */
.play-now-section {
    background: #001133;
    text-align: center;
    padding: 40px 20px;
    border-top: 4px solid #FFD700;
    border-bottom: 4px solid #FFD700;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.play-now-wrapper {
    display: flex;
    justify-content: center;
}

.play-now-btn {
    display: flex; /* replaces inline-block */
    justify-content: center;
    align-items: center;
    background: linear-gradient(270deg, #00f0ff, #00ff88, #ff00c8, #FFD700, #00f0ff);
    background-size: 1000% 1000%;
    color: #001a33;
    padding: 24px 70px;
    border-radius: 40px;
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6), 0 0 50px rgba(0, 240, 255, 0.4);
    transition: all 0.3s ease-in-out;
    animation: floatUpDown 2.5s ease-in-out infinite,
               glowEffect 1.5s ease-in-out infinite alternate,
               colorShift 6s ease infinite;
    font-size: 1.5rem;
    text-decoration: none;
    width: max-content; /* prevents stretching */
}

.play-now-btn:hover {
    background: linear-gradient(135deg, #00ff88, #00f0ff);
    /* Reversed gradient */
    color: #001a33;
    transform: scale(1.08);
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.9);
}

@keyframes colorShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Glow Animation */
@keyframes glowEffect {
    from {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }

    to {
        box-shadow: 0 0 50px rgba(255, 215, 0, 1);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .play-now-section {
        padding: 20px;
    }

    .play-now-btn {
        padding: 18px 30px;
    }
}


/* DOWNLOAD SECTION */
.download-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .download-section {
        padding: 20px;
    }
}

.download-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.download-card {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* ICON STYLE */
.icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #fff;
}

.download-card.apple {
    background: linear-gradient(135deg, #e5e5e5, #bfbfbf);
}

.download-card.apple .icon {
    color: #000;
}

.download-card.android {
    background: linear-gradient(135deg, #a8e063, #56ab2f);
}

.download-card.android .icon {
    color: #fff;
}

.download-card.pc {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.download-card.pc .icon {
    color: #fff;
}


.download-btn {
    background-color: #001133;
    /* dark navy blue */
    color: #FFD700;
    /* gold text */
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 17, 51, 0.4);
    /* subtle navy shadow */
    transition: all 0.3s ease;
}

.download-btn:hover {
    background-color: #FFD700;
    /* gold background */
    color: #001133;
    /* dark blue text */
    box-shadow: 0 6px 18px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}



@media (max-width: 768px) {
    .download-cards {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .download-card {
        width: 140px;
        height: 140px;
        border-radius: 50%;
    }

    .icon {
        margin-bottom: 10px;
    }

    .download-btn {
        padding: 6px 14px;
    }
}


/* TEST ID SECTION */
.test-id-section {
    background-color: #ffffff;
    text-align: center;
    padding: 40px 20px;
}

@media (max-width: 768px) {
    .test-id-section {
        padding: 20px;
    }
}

.test-id-box {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.test-id-icon {
    font-size: 48px;
    color: #FFD700;
    /* gold background */
    background: #001133;
    /* dark navy blue */
    padding: 18px;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 768px) {
    .test-id-icon {
        font-size: 28px;
    }
}

.credentials-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.credential {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fafafa;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.label {
    font-weight: 600;
    color: #555;
}

.value {
    font-weight: bold;
    color: #FFD700;
}

/* CONTENT SECTION */
.content-section {
    background-color: #ffffff;
    padding: 40px 20px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .content-section {
        padding: 20px;
    }
}

.content-image {
    display: block;
    width: 100%;
    max-width: 720px;
    height: auto;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Lists */
.no-bullet {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.styled-ul,
.styled-ol {
    margin: 20px 0;
    padding-left: 0;
    text-align: center;
    list-style-position: inside;
    /* ← key line */
}

.styled-ul li,
.styled-ol li {
    margin-bottom: 10px;
}


.styled-ul li {
    list-style-type: disc;
}

.styled-ol li {
    list-style-type: decimal;
}

/* Table */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
}

.styled-table th,
.styled-table td {
    border: 1px solid #ccc;
    padding: 12px 15px;
    text-align: left;
}

.styled-table th {
    background-color: #001133;
    /* deep dark blue */
    color: #FFD700;
    /* bold gold text */
}

.styled-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Footer Section */
.site-footer {
    background-color: #ffffff;
    text-align: center;
    padding: 20px 10px;
}

.highlight {
    color: #FFD700;
}

/* Floating Bonus Section */
.floating-bonus {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.bonus-button {
    background: linear-gradient(to right, #001a66, #0033cc, #ffd700);
    /* Dark blue to gold */
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.bonus-gif {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .bonus-gif {
        width: 50%;
        max-width: 200px;
    }
}

.hide-bonus {
    background: none;
    border: none;
    color: #001a66;
    font-weight: bold;
    cursor: pointer;
}

/* Show Bonus Button (Initially hidden) */
#showBonus {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: linear-gradient(to right, #001a66, #0033cc, #ffd700);
    color: #ffffff;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}