/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: url('https://i.pinimg.com/474x/13/c6/d3/13c6d3621dddcb5c860f329701b25dad.jpg') center / cover no-repeat fixed;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(1px);
    z-index: -1;
}

/* Policy notice modal */
.policy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.policy-content {
    background-color: rgba(20, 20, 20, 0.95);
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 2px solid #FFD700;
    position: relative;
    overflow: hidden;
}

.policy-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        transparent,
        transparent,
        transparent,
        rgba(255, 215, 0, 0.1)
    );
    transform: rotate(30deg);
    animation: shine 6s linear infinite;
}

@keyframes shine {
    0% { transform: rotate(30deg) translate(-30%, -30%); }
    100% { transform: rotate(30deg) translate(30%, 30%); }
}

.policy-content h2 {
    color: #FFD700;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.policy-content p {
    margin-bottom: 20px;
}

.policy-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.policy-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accept-btn {
    background-color: #2a2a2a;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.accept-btn:hover {
    background-color: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.decline-btn {
    background-color: #2a2a2a;
    color: #ff5555;
    border: 1px solid #ff5555;
}

.decline-btn:hover {
    background-color: rgba(255, 85, 85, 0.1);
    box-shadow: 0 0 15px rgba(255, 85, 85, 0.5);
}

/* Main container */
.container {
    display: flex;
    max-width: 1200px;
    margin:  auto;
    padding: 10px;
}

/* Header styles */
header {
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 208, 0, 0.863);
    position: relative;
}

h1 {
    color: #FFD700;
    font-size: 30px;
    margin-bottom: 3px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 0;
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 5px 0;
    color: #FFD700;
    font-style: italic;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Download button */
.download-btn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 20px;
    background-color: rgba(20, 20, 20, 0.9);
    color: #FFD700;
    border: 1px solid #FFD700;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.download-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        transparent,
        transparent,
        transparent,
        rgba(255, 215, 0, 0.3),
        transparent
    );
    transform: rotate(30deg);
    transition: all 0.7s;
}

.download-btn:hover {
    background-color: rgba(40, 40, 40, 0.9);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.download-btn:hover::after {
    left: 120%;
}

.download-btn i {
    font-size: 18px;
}

/* Menu styles */
.menu-toggle {
    font-size: 24px;
    cursor: pointer;
    color: #FFD700;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s;
    display: none;
}

.menu-toggle:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.main-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: rgba(20, 20, 20, 0.95);
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    z-index: 1000;
    display: none;
    width: 200px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.main-menu.active {
    display: block;
}

.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-menu li {
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.main-menu li:last-child {
    border-bottom: none;
}

.main-menu a {
    display: block;
    padding: 12px 15px;
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-menu a:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: #fff;
}

.main-menu i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Button grid */
.button-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.main-btn {
    padding: 20px;
    background: rgba(20, 20, 20, 0.9);
    color: #FFD700;
    border: 1px solid #FFD700;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 180px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
}

.main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.2),
        transparent
    );
    transition: 0.5s;
}

.main-btn:hover::before {
    left: 100%;
}

.main-btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #FFD700;
    border-radius: 10px;
    z-index: -1;
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
    background-size: 200%;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
        opacity: 0.7;
    }
    50% {
        background-position: 100% 50%;
        opacity: 1;
    }
    100% {
        background-position: 0% 50%;
        opacity: 0.7;
    }
}

.main-btn:hover {
    background: rgba(40, 40, 40, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.btn-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(20, 20, 20, 0.9);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
    margin-top: 30px;
    border-radius: 8px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

footer p {
    color: #aaa;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: #FFD700;
    font-size: 24px;
    transition: all 0.3s;
}

.social-links a:hover {
    color: #fff;
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

/* Visitor counter */
.visitor-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.counter-icon svg {
    width: 24px;
    height: 24px;
    fill: #4CAF50;
}

.counter-info {
    display: flex;
    flex-direction: column;
}

.counter-number {
    font-weight: bold;
    font-size: 18px;
    color: #FFD700;
}

.counter-label {
    font-size: 12px;
    color: #aaa;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.counter-animate {
    animation: pulse 0.5s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .button-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    header {
        padding-top: 60px;
    }

    .download-btn {
        top: 10px;
        right: 10px;
    }

    .menu-toggle {
        display: block;
    }

    .main-menu {
        display: none;
    }

    .main-menu.active {
        display: block;
    }
}

@media (max-width: 600px) {
    .button-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
    }
}

@media (max-width: 480px) {
    .button-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
    }

    h1 {
        font-size: 28px;
    }

    .btn-logo {
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 769px) {
    .main-menu {
        position: static;
        display: block;
        background: transparent;
        box-shadow: none;
        width: auto;
        border: none;
    }
    
    .main-menu ul {
        display: flex;
    }
    
    .main-menu li {
        border-bottom: none;
        margin-left: 15px;
    }
    
    .main-menu a {
        padding: 8px 12px;
        border-radius: 4px;
    }
}
