/* style.css - Lottery Blessings */
:root {
    --angel-teal: #15ffea;
    --cosmic-dark: #0a1f3d;
    --stardust-purple: #6a11cb;
    --moon-glow: #2575fc;
    --blessing-gold: #ffd700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, var(--cosmic-dark), var(--stardust-purple));
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    line-height: 1.6;
}

/* Header Styles */
.header {
    background: rgba(10, 31, 61, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--angel-teal);
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.angel-icon {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.logo h1 {
    background: linear-gradient(45deg, var(--angel-teal), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(21, 255, 234, 0.2);
}

/* Menu Hambúrguer */
.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--angel-teal);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: radial-gradient(circle at center, rgba(21, 255, 234, 0.1), transparent 70%);
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--angel-teal), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.angel-animation {
    font-size: 3rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Main Content */
.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.generator-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid var(--angel-teal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.selection-section {
    margin-bottom: 2rem;
}

.section-label {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--angel-teal);
    font-weight: 600;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.country-option {
    background: rgba(21, 255, 234, 0.1);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-option:hover {
    transform: translateY(-5px);
    border-color: var(--angel-teal);
}

.country-option.active {
    background: rgba(21, 255, 234, 0.2);
    border-color: var(--angel-teal);
    transform: translateY(-5px);
}

.flag {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.lottery-select {
    width: 100%;
    background: rgba(21, 255, 234, 0.1);
    border: 2px solid var(--angel-teal);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

.blessing-message {
    background: rgba(21, 255, 234, 0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    margin: 2rem 0;
    border-left: 4px solid var(--angel-teal);
}

.blessing-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.generate-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--angel-teal), var(--moon-glow));
    border: none;
    border-radius: 12px;
    padding: 1.5rem;
    color: var(--cosmic-dark);
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.generate-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(21, 255, 234, 0.4);
}

/* Results Container */
.results-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid var(--angel-teal);
    margin-top: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.results-header {
    text-align: center;
    margin-bottom: 2rem;
}

.results-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--angel-teal);
}

.blessing-stamp {
    font-style: italic;
    opacity: 0.9;
    color: var(--blessing-gold);
}

.numbers-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.number-ball {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--angel-teal), var(--moon-glow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--cosmic-dark);
    box-shadow: 0 8px 20px rgba(21, 255, 234, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.bonus-numbers {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.bonus-ball {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.action-btn {
    padding: 1rem;
    border: 2px solid var(--angel-teal);
    background: transparent;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.action-btn:hover {
    background: rgba(21, 255, 234, 0.2);
    transform: translateY(-3px);
}

/* Ad Container */
.ad-container {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
    text-align: center;
}

/* Footer */
.footer {
    background: rgba(10, 31, 61, 0.9);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 2px solid var(--angel-teal);
}

.footer p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--angel-teal);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.visible {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 31, 61, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(21, 255, 234, 0.1);
        width: 100%;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }
    
    .country-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .generator-container {
        padding: 1.5rem;
    }

    /* === ESTILOS PARA ABOUT PAGE NO MOBILE === */
    .creator-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .winning-story-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .winning-description {
        text-align: center;
        width: 100%;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem;
    }
    
    .number-ball, .bonus-ball {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}