/* Reset a základní styly */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Starter Pokémon Colors */
    --charmander-red: #FF6B35;
    --charmander-orange: #FF8C42;
    --bulbasaur-green: #4CAF50;
    --bulbasaur-light-green: #66BB6A;
    --squirtle-blue: #1565C0;
    --squirtle-light-blue: #1976D2;
    --pikachu-yellow: #FFDE00;
    --pikachu-black: #1a1a1a;
    --pikachu-dark-black: #000000;
    
    /* Legacy colors for compatibility */
    --pokemon-red: #FF6B35;
    --pokemon-blue: #2196F3;
    --pokemon-yellow: #FFDE00;
    --pokemon-orange: #FF8C42;
    --pokemon-green: #4CAF50;
    
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: #f8f9fa;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(33, 150, 243, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Pikachu Theme (Black & Yellow) */
header {
    background: var(--pikachu-dark-black);
    color: var(--pikachu-yellow);
    padding: 12px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--pikachu-yellow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.logo {
    flex-shrink: 0;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 2px;
    color: var(--pikachu-yellow);
    text-shadow: 2px 2px 4px rgba(255, 222, 0, 0.5);
    font-weight: bold;
    cursor: pointer;
}

.tagline {
    font-size: 0.75rem;
    color: var(--pikachu-yellow);
    opacity: 0.9;
}

nav {
    flex: 1;
    min-width: 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav a {
    color: var(--pikachu-yellow);
    text-decoration: none;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: rgba(255, 222, 0, 0.15);
    border: 2px solid var(--pikachu-yellow);
    display: inline-block;
    font-size: 0.85rem;
    white-space: nowrap;
}

nav a:hover {
    background: var(--pikachu-yellow);
    color: var(--pikachu-dark-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 222, 0, 0.4);
}

nav a.active {
    background: var(--pikachu-yellow);
    color: var(--pikachu-dark-black);
}

/* Hero Section - Pikachu Theme (Black & Yellow) */
.hero {
    background: var(--pikachu-dark-black);
    color: var(--pikachu-yellow);
    padding: 80px 40px;
    text-align: center;
    margin: 30px 20px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--pikachu-yellow);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 222, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--pikachu-yellow);
    text-shadow: 2px 2px 8px rgba(255, 222, 0, 0.3);
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    color: var(--pikachu-yellow);
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Affiliate Banner */
.affiliate-banner {
    background: var(--white);
    padding: 40px 20px;
    margin: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.affiliate-banner h3 {
    text-align: center;
    color: var(--pokemon-red);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.affiliate-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.affiliate-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px var(--shadow);
    text-align: center;
}

.affiliate-btn strong {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.affiliate-btn span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.affiliate-btn.alza {
    background: linear-gradient(135deg, var(--charmander-red) 0%, var(--charmander-orange) 100%);
}

.affiliate-btn.smarty {
    background: linear-gradient(135deg, var(--bulbasaur-green) 0%, var(--bulbasaur-light-green) 100%);
}

.affiliate-btn.drak {
    background: linear-gradient(135deg, var(--squirtle-blue) 0%, var(--squirtle-light-blue) 100%);
}

.affiliate-btn.tlama {
    background: linear-gradient(135deg, var(--charmander-orange) 0%, var(--charmander-red) 100%);
}

.affiliate-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Content Sections */
.content-section {
    background: var(--white);
    margin: 40px 20px;
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 2px;
}

/* Alternating colors for sections based on starters */
#navody h2 {
    color: var(--bulbasaur-green);
}

#navody h2::after {
    background: linear-gradient(90deg, var(--bulbasaur-green), var(--bulbasaur-light-green));
}

#kde-koupit h2 {
    color: var(--squirtle-blue);
}

#kde-koupit h2::after {
    background: linear-gradient(90deg, var(--squirtle-blue), var(--squirtle-light-blue));
}

#serie h2 {
    color: var(--charmander-red);
}

#serie h2::after {
    background: linear-gradient(90deg, var(--charmander-red), var(--charmander-orange));
}

#ohodnocene-karty h2 {
    color: var(--bulbasaur-green);
}

#ohodnocene-karty h2::after {
    background: linear-gradient(90deg, var(--bulbasaur-green), var(--bulbasaur-light-green));
}

#tipy h2 {
    color: var(--squirtle-blue);
}

#tipy h2::after {
    background: linear-gradient(90deg, var(--squirtle-blue), var(--squirtle-light-blue));
}

#fake-karty h2 {
    color: var(--charmander-red);
}

#fake-karty h2::after {
    background: linear-gradient(90deg, var(--charmander-red), var(--charmander-orange));
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Guide Cards - Modern Card Design */
.guide-card, .tip-card {
    background: var(--white);
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.guide-card::before, .tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--bulbasaur-green), var(--bulbasaur-light-green));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.guide-card:hover::before, .tip-card:hover::before {
    transform: scaleY(1);
}

.guide-card:hover, .tip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.06);
    border-color: rgba(76, 175, 80, 0.2);
}

.guide-card h3, .tip-card h3 {
    color: var(--bulbasaur-green);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.guide-card ul, .guide-card ol {
    margin-left: 25px;
    margin-top: 15px;
}

.guide-card li, .tip-card p {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* Series Grid - Alternating starter colors */
/* Series List - Compact Layout */
.series-list {
    margin-bottom: 30px;
}

.series-item {
    background: var(--white);
    padding: 20px 24px;
    margin-bottom: 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.series-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.12);
}

.series-item h3 {
    margin: 0 0 12px 0;
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.series-item p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.95rem;
}

.update-note {
    font-size: 0.85rem;
    opacity: 0.8;
    font-style: italic;
    color: var(--text-light);
}

.affiliate-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--bg-light);
}

.affiliate-section h3 {
    text-align: center;
    color: var(--pokemon-red);
    margin-bottom: 20px;
}

/* Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.shop-card {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.shop-card:nth-child(1) {
    border: 2px solid var(--charmander-orange);
}

.shop-card:nth-child(2) {
    border: 2px solid var(--bulbasaur-light-green);
}

.shop-card:nth-child(3) {
    border: 2px solid var(--squirtle-light-blue);
}

.shop-card:nth-child(4) {
    border: 2px solid var(--charmander-red);
}

.shop-card:nth-child(5) {
    border: 2px solid var(--charmander-orange);
}

.shop-card:nth-child(6) {
    border: 2px solid var(--bulbasaur-light-green);
}

.shop-card:nth-child(7) {
    border: 2px solid var(--squirtle-light-blue);
}

.shop-card:nth-child(8) {
    border: 2px solid var(--charmander-red);
}

.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.12);
}

.shop-card:nth-child(1):hover {
    border-color: var(--charmander-red);
}

.shop-card:nth-child(2):hover {
    border-color: var(--bulbasaur-green);
}

.shop-card:nth-child(3):hover {
    border-color: var(--squirtle-blue);
}

.shop-card:nth-child(4):hover {
    border-color: var(--charmander-orange);
}

.shop-card:nth-child(5):hover {
    border-color: var(--charmander-red);
}

.shop-card:nth-child(6):hover {
    border-color: var(--bulbasaur-green);
}

.shop-card:nth-child(7):hover {
    border-color: var(--squirtle-blue);
}

.shop-card:nth-child(8):hover {
    border-color: var(--charmander-orange);
}

.shop-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Alternating shop card colors */
.shop-card:nth-child(1) h3 {
    color: var(--charmander-red);
}

.shop-card:nth-child(2) h3 {
    color: var(--bulbasaur-green);
}

.shop-card:nth-child(3) h3 {
    color: var(--squirtle-blue);
}

.shop-card:nth-child(4) h3 {
    color: var(--charmander-orange);
}

.shop-card:nth-child(5) h3 {
    color: var(--charmander-red);
}

.shop-card:nth-child(6) h3 {
    color: var(--bulbasaur-green);
}

.shop-card:nth-child(7) h3 {
    color: var(--squirtle-blue);
}

.shop-card:nth-child(8) h3 {
    color: var(--charmander-orange);
}

.shop-card p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
}

.shop-link {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.shop-card:nth-child(1) .shop-link {
    color: var(--charmander-red);
}

.shop-card:nth-child(1) .shop-link:hover {
    color: var(--charmander-orange);
}

.shop-card:nth-child(2) .shop-link {
    color: var(--bulbasaur-green);
}

.shop-card:nth-child(2) .shop-link:hover {
    color: var(--bulbasaur-light-green);
}

.shop-card:nth-child(3) .shop-link {
    color: var(--squirtle-blue);
}

.shop-card:nth-child(3) .shop-link:hover {
    color: var(--squirtle-light-blue);
}

.shop-card:nth-child(4) .shop-link {
    color: var(--charmander-orange);
}

.shop-card:nth-child(4) .shop-link:hover {
    color: var(--charmander-red);
}

.shop-card:nth-child(5) .shop-link {
    color: var(--charmander-red);
}

.shop-card:nth-child(5) .shop-link:hover {
    color: var(--charmander-orange);
}

.shop-card:nth-child(6) .shop-link {
    color: var(--bulbasaur-green);
}

.shop-card:nth-child(6) .shop-link:hover {
    color: var(--bulbasaur-light-green);
}

.shop-card:nth-child(7) .shop-link {
    color: var(--squirtle-blue);
}

.shop-card:nth-child(7) .shop-link:hover {
    color: var(--squirtle-light-blue);
}

.shop-card:nth-child(8) .shop-link {
    color: var(--charmander-orange);
}

.shop-card:nth-child(8) .shop-link:hover {
    color: var(--charmander-red);
}

/* Ad Space */
.ad-space {
    margin: 40px 0;
    text-align: center;
}

.ad-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-placeholder {
    background: var(--bg-light);
    border: 2px dashed var(--text-light);
    padding: 40px;
    border-radius: 8px;
    color: var(--text-light);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer - Modern Design */
footer {
    background: linear-gradient(180deg, var(--pikachu-dark-black) 0%, #0a0a0a 100%);
    color: var(--pikachu-yellow);
    padding: 50px 20px;
    text-align: center;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 222, 0, 0.2);
}

footer p {
    margin-bottom: 12px;
    opacity: 0.9;
}

footer p:last-child {
    margin-bottom: 0;
}

footer p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.8;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 992px) {
    nav a {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    nav ul {
        gap: 6px;
    }

    .hero {
        padding: 60px 30px;
        margin: 20px 15px;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 40px 30px;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    header .container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .tagline {
        font-size: 0.7rem;
    }

    nav {
        width: 100%;
        order: 3;
    }

    nav ul {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 5px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    nav a {
        padding: 5px 9px;
        font-size: 0.75rem;
        flex-shrink: 0;
    }

    .hero {
        padding: 50px 20px;
        margin: 15px 10px;
        border-radius: 20px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .content-section {
        padding: 30px 20px;
        margin: 20px 10px;
        border-radius: 20px;
    }

    .content-section h2 {
        font-size: 1.75rem;
    }

    .guide-card, .tip-card {
        padding: 24px;
        border-radius: 12px;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.1rem;
    }

    nav a {
        font-size: 0.7rem;
        padding: 4px 7px;
    }
    
    nav ul {
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    nav a {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .hero {
        padding: 40px 15px;
    }

    .content-section {
        padding: 25px 15px;
    }
}

/* SEO Friendly - Print Styles */
@media print {
    header, footer, .affiliate-banner, .ad-space {
        display: none;
    }

    body {
        background: white;
    }

    .content-section {
        box-shadow: none;
        margin: 0;
        padding: 20px;
    }
}

/* Warning Box - Charmander Red */
.warning-box {
    background: linear-gradient(135deg, var(--charmander-red) 0%, var(--charmander-orange) 100%);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px var(--shadow);
    text-align: center;
    border: 2px solid var(--charmander-orange);
}

.warning-box p {
    margin: 0;
    font-size: 1.1rem;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.comparison-item {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    border: 3px solid;
}

.comparison-item:first-child {
    border-color: var(--charmander-red);
}

.comparison-item:last-child {
    border-color: var(--bulbasaur-green);
}

.comparison-item h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.comparison-item:first-child h4 {
    color: var(--charmander-red);
}

.comparison-item:last-child h4 {
    color: var(--bulbasaur-green);
}

.comparison-item ul {
    list-style: none;
    margin-left: 0;
}

.comparison-item li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 25px;
    position: relative;
}

.comparison-item li:last-child {
    border-bottom: none;
}

.comparison-item li:before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* Accessibility */
a:focus, button:focus {
    outline: 3px solid var(--pokemon-yellow);
    outline-offset: 2px;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--pikachu-dark-black);
    color: var(--pikachu-yellow);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    border-top: 3px solid var(--pikachu-yellow);
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border: 2px solid var(--pikachu-yellow);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-btn-accept {
    background: var(--pikachu-yellow);
    color: var(--pikachu-dark-black);
}

.cookie-btn-accept:hover {
    background: rgba(255, 222, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 222, 0, 0.4);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--pikachu-yellow);
}

.cookie-btn-decline:hover {
    background: rgba(255, 222, 0, 0.15);
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--pikachu-yellow);
    color: var(--pikachu-dark-black);
    border: 3px solid var(--pikachu-dark-black);
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    line-height: 1;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--pikachu-dark-black);
    color: var(--pikachu-yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
}
