/* GLOBAL */
body {
    margin: 0;
    background: #0d0d0d;
    font-family: 'Segoe UI', sans-serif;
    color: white;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 46, 99, 0.15), transparent),
                radial-gradient(circle at 80% 70%, rgba(0, 150, 255, 0.15), transparent);
    z-index: -1;
}

/* HEADER */
header {
    padding: 20px;
    text-align: center;
}

.logo {
    height: 70px;
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('assets/1.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 0, 150, 0.8);
}

.hero-content p {
    font-size: 1.3rem;
    margin-top: 10px;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary {
    padding: 12px 25px;
    background: #ff0099;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 15px #ff0099;
    transition: 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #ff33aa;
}

.btn-secondary {
    padding: 12px 25px;
    border: 2px solid #ff0099;
    color: #ff0099;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}

.btn-secondary:hover {
    background: #ff0099;
    color: #fff;
    box-shadow: 0 0 20px #ff0099;
}

/* MAIN CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* LUCKY MODE SECTION */
.lucky-mode {
    padding: 80px 20px;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
}

.lm-container {
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.lm-image img {
    width: 380px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 0, 150, 0.4);
}

.lm-content {
    flex: 1;
    color: #fff;
}

.lm-content h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    text-shadow: 0 0 12px rgba(255, 0, 150, 0.7);
}

.lm-content p {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 25px;
    line-height: 1.6;
}

.lm-button {
    padding: 12px 28px;
    background: #ff0099;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 15px #ff0099;
    transition: 0.2s;
}

.lm-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #ff33aa;
}

/* LUCKY VIBE SECTION */
.lucky-vibe {
    padding: 80px 20px;
    background: #0d0d0d;
    display: flex;
    justify-content: center;
}

.lv-container {
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.lv-content {
    flex: 1;
    color: #fff;
}

.lv-content h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    text-shadow: 0 0 12px rgba(255, 0, 150, 0.7);
}

.lv-content p {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 25px;
    line-height: 1.6;
}

.vibe-bar {
    width: 100%;
    height: 14px;
    background: #333;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}

.vibe-fill.high {
    width: 90%;
    height: 100%;
    background: linear-gradient(90deg, #ff0099, #ff66cc);
    box-shadow: 0 0 20px #ff0099;
}

.lv-button {
    padding: 12px 28px;
    background: #ff0099;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 15px #ff0099;
    transition: 0.2s;
}

.lv-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #ff33aa;
}

.lv-image img {
    width: 380px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 0, 150, 0.4);
}

/* NUMBER GENERATOR PANEL */
.panel {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 12px;
    margin-top: 60px;
    text-align: center;
    box-shadow: 0 0 25px rgba(255, 0, 150, 0.15);
}

.panel h1 {
    font-size: 42px;
    color: #ff2e63;
}

.subtitle {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 30px;
}

.lottery-select {
    background: #1a1a1a;
    color: white;
    border: 1px solid #ff2e63;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    width: 80%;
    cursor: pointer;
}

button {
    background: #ff2e63;
    border: none;
    padding: 18px 40px;
    font-size: 20px;
    border-radius: 8px;
    cursor: pointer;
    color: white;
    transition: 0.2s;
}

button:hover {
    background: #ff4f7a;
}

.result-box {
    margin-top: 30px;
    font-size: 28px;
    letter-spacing: 4px;
    padding: 20px;
    border: 1px solid #ff2e63;
    border-radius: 10px;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.result-box.show {
    opacity: 1;
    transform: translateY(0);
}

.share-btn {
    margin-top: 15px;
    background: transparent;
    border: 1px solid #ff2e63;
    color: #ff2e63;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

.share-btn:hover {
    background: #ff2e63;
    color: white;
    box-shadow: 0 0 12px #ff2e63;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.footer-link {
    color: #ff2e63;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-link:hover {
    color: white;
    text-shadow: 0 0 8px #ff2e63;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; }

    .lm-container,
    .lv-container {
        flex-direction: column;
        text-align: center;
    }

    .lm-image img,
    .lv-image img {
        width: 90%;
    }

    .panel {
        padding: 25px;
    }

    button {
        width: 100%;
        padding: 16px;
        font-size: 18px;
    }

    .lottery-select {
        width: 100%;
    }
}
/* LUCKY STORIES PAGE */
.stories {
    padding: 80px 20px;
    background: #0d0d0d;
    display: flex;
    justify-content: center;
}

.stories-container {
    max-width: 1100px;
    text-align: center;
}

.stories-title {
    font-size: 3rem;
    color: #ff0099;
    text-shadow: 0 0 15px rgba(255, 0, 150, 0.7);
    margin-bottom: 10px;
}

.stories-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

.story-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 0 20px rgba(255, 0, 150, 0.15);
    transition: 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 0, 150, 0.3);
}

.story-image {
    width: 100%;
    max-width: 650px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 0 25px rgba(255, 0, 150, 0.25);
}

.story-card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ff0099;
}

.story-card p {
    font-size: 1.1rem;
    opacity: 0.85;
    line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
    .stories-title { font-size: 2.2rem; }
    .story-card h2 { font-size: 1.5rem; }
}

/* LUCKY ANALYTICS PAGE */
.analytics {
    padding: 80px 20px;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
}

.analytics-container {
    max-width: 1100px;
    text-align: center;
}

.analytics-title {
    font-size: 3rem;
    color: #ff0099;
    text-shadow: 0 0 15px rgba(255, 0, 150, 0.7);
    margin-bottom: 10px;
}

.analytics-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

.analytics-hero {
    margin-bottom: 40px;
}

.analytics-image {
    width: 100%;
    max-width: 650px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 0, 150, 0.25);
}

/* GRID */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.analytics-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 0, 150, 0.15);
    transition: 0.3s;
}

.analytics-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 0, 150, 0.3);
}

.analytics-card h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #ff0099;
}

.analytics-text {
    font-size: 1.1rem;
    opacity: 0.85;
    line-height: 1.6;
}

.analytics-highlight {
    font-size: 1.6rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
}

/* MOBILE */
@media (max-width: 768px) {
    .analytics-title { font-size: 2.2rem; }
    .analytics-grid {
        grid-template-columns: 1fr;
    }
}

/* NAVIGATION */
.nav {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.nav a {
    color: #ff2e63;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: 0.3s;
}

.nav a:hover {
    color: white;
    text-shadow: 0 0 10px #ff2e63;
}

/* MOBILE NAV */
@media (max-width: 768px) {
    .nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav a {
        font-size: 15px;
    }
}

/* DAILY ENERGY PAGE */
.daily-energy {
    padding: 80px 20px;
    background: #0d0d0d;
    display: flex;
    justify-content: center;
}

.de-container {
    max-width: 1100px;
    text-align: center;
}

.de-title {
    font-size: 3rem;
    color: #ff0099;
    text-shadow: 0 0 15px rgba(255, 0, 150, 0.7);
    margin-bottom: 10px;
}

.de-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

.de-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 0 20px rgba(255, 0, 150, 0.15);
    transition: 0.3s;
}

.de-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 0, 150, 0.3);
}

.de-card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ff0099;
}

.de-text {
    font-size: 1.1rem;
    opacity: 0.85;
    line-height: 1.6;
}

.de-highlight {
    font-size: 1.6rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
}

/* MOBILE */
@media (max-width: 768px) {
    .de-title { font-size: 2.2rem; }
    .de-card h2 { font-size: 1.5rem; }
}



