@import url('https://fonts.googleapis.com/css2?family=Google+Sans:wght@300;400;500;600;700&display=swap');


:root 
{
    --pc: #3b82f6;
    --pl: #60a5fa;
    --pd: #1d4ed8;
    --sc: #f1f5f9;
    --ac: #fbbf24;
    --tp: #1e293b;
    --ts: #64748b;
    --bg: #f8fafc;
    --cb: rgba(255, 255, 255, 0.7);
    --gb: rgba(255, 255, 255, 0.1);
    --gbr: rgba(255, 255, 255, 0.2);
}


.theme-blue 
{
    --pc: #3b82f6;
    --pl: #60a5fa;
    --pd: #1d4ed8;
    --ac: #93c5fd;
    --bg: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}
.theme-green 
{
    --pc: #10b981;
    --pl: #34d399;
    --pd: #047857;
    --ac: #6ee7b7;
    --bg: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}
.theme-yellow {

    --pc: #f59e0b;
    --pl: #fbbf24;
    --pd: #d97706;
    --ac: #fcd34d;
    --bg: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
}
.theme-pink 
{
    --pc: #ec4899;
    --pl: #f472b6;
    --pd: #be185d;
    --ac: #f9a8d4;
    --bg: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}
.theme-red 
{
    --pc: #ef4444;
    --pl: #f87171;
    --pd: #dc2626;
    --ac: #fca5a5;
    --bg: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}
.theme-purple 
{
    --pc: #8b5cf6;
    --pl: #a78bfa;
    --pd: #7c3aed;
    --ac: #c4b5fd;
    --bg: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
}


* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body 
{
    font-family: 'Google Sans', sans-serif;
    background: var(--bg);
    color: var(--tp);
    line-height: 1.6;
    overflow-x: hidden;
}

.container 
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.navbar 
{
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--gb);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gbr);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container 
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-title 
{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pc);
}

.nav-menu 
{
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link 
{
    text-decoration: none;
    color: var(--tp);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active 
{
    color: var(--pc);
}

.nav-link.active::after 
{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--pc);
}


.hero 
{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://i.pinimg.com/originals/15/c2/3b/15c23b816abab95157980bb861de119d.jpg?auto=webp&s=1c621c6b7bfe365f493dda0f97371a215b3efa4f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    filter: brightness(0.7);
    z-index: -1;
}

.hero-content 
{
    text-align: center;
    color: white;
    z-index: 1;
    background: var(--gb);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--gbr);
}

.hero-title 
{
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle 
{
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
}


.pokemon-gallery 
{
    padding: 5rem 0;
    background: var(--bg);
}

.section-title 
{
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: var(--pc);
}

.pokemon-grid 
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pokemon-card 
{
    background: var(--cb);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid var(--gbr);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pokemon-card:hover 
{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pokemon-image 
{
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.pokemon-name 
{
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    color: var(--pc);
    margin-bottom: 0.5rem;
}

.pokemon-info 
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pc);
    color: white;
    padding: 1.5rem;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pokemon-card:hover .pokemon-info 
{
    opacity: 0.95;
}

.pokemon-type 
{
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.pokemon-description 
{
    font-size: 0.85rem;
    line-height: 1.4;
}


.vote-section 
{
    padding: 5rem 0;
    background: var(--sc);
}

.vote-card 
{
    background: var(--cb);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--gbr);
    max-width: 600px;
    margin: 0 auto;
}

.vote-title 
{
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--pc);
}

.form-group 
{
    margin-bottom: 1.5rem;
}

.form-group label 
{
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--tp);
}

.pokemon-dropdown 
{
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gbr);
    border-radius: 10px;
    background: var(--pd);
    color: white;
    font-size: 1rem;
    font-family: 'Google Sans', sans-serif;
}

.pokemon-dropdown option 
{
    background: var(--pd);
    color: white;
    padding: 0.5rem;
}

textarea 
{
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gbr);
    border-radius: 10px;
    background: var(--cb);
    color: var(--tp);
    font-size: 1rem;
    font-family: 'Google Sans', sans-serif;
    resize: vertical;
    min-height: 100px;
}

.vote-btn 
{
    width: 100%;
    padding: 1rem 2rem;
    background: var(--pc);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Google Sans', sans-serif;
}

.vote-btn:hover 
{
    background: var(--pd);
    transform: translateY(-2px);
}


.about-hero 
{
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-title 
{
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--pc);
}

.about-description 
{
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--ts);
    max-width: 800px;
    margin: 0 auto;
}


.faq-section 
{
    padding: 4rem 0;
}

.faq-container 
{
    max-width: 800px;
    margin: 0 auto;
}

.faq-item 
{
    background: var(--cb);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid var(--gbr);
    overflow: hidden;
}

.faq-question 
{
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--tp);
    transition: background 0.3s ease;
}

.faq-question:hover 
{
    background: var(--gb);
}

.faq-icon 
{
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon 
{
    transform: rotate(45deg);
}

.faq-answer 
{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--gb);
}

.faq-item.active .faq-answer 
{
    max-height: 200px;
}

.faq-answer p 
{
    padding: 1.5rem;
    color: var(--ts);
    line-height: 1.6;
}


.theme-section 
{
    padding: 4rem 0;
    background: var(--sc);
}

.theme-selector 
{
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.theme-description 
{
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--ts);
}

.color-options 
{
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.color-option 
{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.color-option:hover 
{
    transform: scale(1.1);
    border-color: var(--tp);
}

.color-option.blue { background: #3b82f6; }
.color-option.green { background: #10b981; }
.color-option.yellow { background: #f59e0b; }
.color-option.pink { background: #ec4899; }
.color-option.red { background: #ef4444; }
.color-option.purple { background: #8b5cf6; }


.footer 
{
    background: var(--pd);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}


@media (max-width: 768px) 
{
    .hero-title 
    {
        font-size: 2.5rem;
    }
    
    .hero-subtitle 
    {
        font-size: 1rem;
    }
    
    .pokemon-grid 
    {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .nav-menu 
    {
        gap: 1rem;
    }
    
    .color-options 
    {
        gap: 0.5rem;
    }
    
    .color-option 
    {
        width: 50px;
        height: 50px;
    }
}
