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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 25%, #43a047 50%, #66bb6a 75%, #81c784 100%);
    min-height: 100vh;
    color: #333;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(76, 175, 80, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 195, 74, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(104, 159, 56, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.grass-animation {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #2e7d32 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.grass-blade {
    position: absolute;
    bottom: 0;
    width: 3px;
    height: 40px;
    background: linear-gradient(to top, #1b5e20, #4caf50);
    border-radius: 100% 0;
    transform-origin: bottom;
    animation: sway 3s ease-in-out infinite;
}

@keyframes sway {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

.floating-leaves {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #689f38;
    border-radius: 0 100%;
    animation: fall 10s linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.header {
    background: linear-gradient(90deg, #1b5e20 0%, #2e7d32 30%, #43a047 60%, #66bb6a 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 10px rgba(27, 94, 32, 0.3);
    position: relative;
    z-index: 10;
    border-bottom: 3px solid #4caf50;
}

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

.logo h1 {
    color: #fff;
    font-size: 2.5rem;
    text-shadow: 3px 3px 6px rgba(27, 94, 32, 0.5);
    letter-spacing: 2px;
    font-weight: bold;
    background: linear-gradient(45deg, #76ff03, #64dd17, #33691e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
    position: relative;
}

.logo h1::after {
    content: '🌿';
    position: absolute;
    right: -40px;
    top: 0;
    font-size: 1.5rem;
    animation: leafBounce 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

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

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.nav-links a:hover {
    transform: translateY(-2px);
    color: #76ff03;
    text-shadow: 0 0 10px rgba(118, 255, 3, 0.5);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    position: relative;
    top: -20px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text {
    font-size: 1.3rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
}

.btn-primary {
    background: linear-gradient(45deg, #2e7d32, #66bb6a);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(118, 255, 3, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #43a047, #76ff03);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(118, 255, 3, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.pokeball-animation {
    width: 200px;
    height: 200px;
    background: linear-gradient(to bottom, #2e7d32 45%, #fff 45%, #fff 55%, #66bb6a 55%);
    border-radius: 50%;
    position: relative;
    box-shadow: 
        0 0 30px rgba(76, 175, 80, 0.5),
        inset 0 0 20px rgba(46, 125, 50, 0.3);
    animation: rotate 3s infinite linear;
}

.pokeball-animation::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #1b5e20, #4caf50);
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.pokeball-animation::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 8px solid #2e7d32;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 10px rgba(76, 175, 80, 0.3);
}

.pokeball-animation::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background: #333;
    top: 50%;
    transform: translateY(-50%);
}

.pokeball-animation::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 8px solid #333;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin: 3rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.pokedex-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: transparent;
}

.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    margin-top: -1rem;
    gap: 3rem;
}

.logo-container {
    text-align: center;
    position: relative;
    padding: 1rem;
}

.pokedex-complete {
    width: 750px;
    height: 450px;
    background: linear-gradient(145deg, #dc143c, #8b0000);
    border-radius: 25px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.5),
        inset 0 0 20px rgba(255,255,255,0.1),
        inset 0 -10px 20px rgba(0,0,0,0.3);
    display: flex;
    position: relative;
    animation: pokedexSlideIn 3s ease-out 5s both;
    opacity: 0;
}

@keyframes pokedexSlideIn {
    0% {
        opacity: 0;
        transform: translateX(300px) rotateY(-45deg) scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: translateX(100px) rotateY(-15deg) scale(0.9);
    }
    80% {
        opacity: 0.9;
        transform: translateX(-20px) rotateY(5deg) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg) scale(1);
    }
}

.pokedex-screen {
    flex: 1;
    background: #1a1a2e;
    border: 5px solid #333;
    border-radius: 8px;
    padding: 10px;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.pokedex-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: scanline 8s linear infinite;
}

.screen-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 8px;
    background: linear-gradient(90deg, rgba(0,255,136,0.2), rgba(255,235,59,0.2));
    border-radius: 3px;
    border: 1px solid #00ff88;
}

.doge-number {
    color: #00ff88;
    font-family: 'Orbitron', monospace;
    font-size: 0.9em;
    text-shadow: 0 0 8px #00ff88;
}

.doge-name {
    color: #ffeb3b;
    font-family: 'Orbitron', monospace;
    font-size: 1em;
    font-weight: bold;
    text-shadow: 0 0 10px #ffeb3b;
}

.doge-display {
    background: radial-gradient(ellipse at center, rgba(0,255,136,0.1), transparent);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.doge-sprite {
    font-size: 50px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255,235,59,0.6));
}

.doge-types {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-bottom: 10px;
}

.type-badge {
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7em;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
}

.doge { background: linear-gradient(135deg, #ffd700, #ff8c00); }
.grass { background: linear-gradient(135deg, #7ec850, #5ca935); }
.fire { background: linear-gradient(135deg, #fd7d24, #e64100); }
.water { background: linear-gradient(135deg, #4a90da, #2970b8); }
.electric { background: linear-gradient(135deg, #ffd700, #ffb700); }
.psychic { background: linear-gradient(135deg, #f366b9, #d946a6); }
.meme { background: linear-gradient(135deg, #ff6b6b, #ff3838); }
.poison { background: linear-gradient(135deg, #b97fc9, #8e44ad); }

.doge-description {
    background: rgba(0,0,0,0.3);
    border: 1px solid #00ff88;
    border-radius: 3px;
    padding: 5px;
    color: #a0f0c0;
    font-size: 0.7em;
    line-height: 1.2;
    max-height: 50px;
    overflow: hidden;
}

.pokedex-lights {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 3px;
}

.poke-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #333;
    animation: blink 3s infinite;
}

.red { background: #ff0000; animation-delay: 0s; }
.yellow { background: #ffa500; animation-delay: 1s; }
.green { background: #00ff00; animation-delay: 2s; }

@keyframes blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; box-shadow: 0 0 5px currentColor; }
}


.title-image-container {
    text-align: center;
    margin: 0;
    background: transparent;
}

.title-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    display: block;
    animation: titleFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(76, 175, 80, 0.3));
}

@keyframes titleFloat {
    0%, 100% { 
        transform: translateY(0) scale(1);
    }
    25% { 
        transform: translateY(-8px) scale(1.02);
    }
    50% { 
        transform: translateY(0) scale(1.01);
    }
    75% { 
        transform: translateY(-5px) scale(1.02);
    }
}

.background-logo-image {
    width: 400px;
    height: 400px;
    opacity: 1;
    animation: emergeFromGrass 3s ease-out;
}

@keyframes emergeFromGrass {
    0% {
        transform: translateY(200px);
        opacity: 0;
        filter: blur(2px);
    }
    30% {
        transform: translateY(100px);
        opacity: 0.3;
        filter: blur(1px);
    }
    60% {
        transform: translateY(20px);
        opacity: 0.7;
        filter: blur(0.5px);
    }
    80% {
        transform: translateY(-10px);
        opacity: 0.9;
        filter: blur(0px);
    }
    90% {
        transform: translateY(5px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes grassGlow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 30px rgba(118, 255, 3, 0.5);
        transform: scale(1.02);
    }
}

@keyframes leafFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(2deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-3px) rotate(-2deg); }
}

.pokedex-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.pokemon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    flex: 1;
}

.pokedex-sidebar {
    width: 400px;
    background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
    border-radius: 20px;
    box-shadow: 
        0 8px 25px rgba(46, 125, 50, 0.3),
        inset 0 0 20px rgba(76, 175, 80, 0.1);
    position: sticky;
    top: 2rem;
    max-height: 80vh;
    overflow-y: auto;
    border: 3px solid #4caf50;
}

.pokedex-header {
    background: linear-gradient(90deg, #2e7d32, #43a047);
    color: white;
    padding: 1rem;
    border-radius: 17px 17px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pokedex-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: bold;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.pokedex-content {
    padding: 2rem;
}

.no-selection {
    text-align: center;
    color: #666;
    font-style: italic;
}

.pokemon-details {
    text-align: center;
}

.pokemon-details .pokemon-sprite {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    font-size: 4rem;
}

.pokemon-info {
    margin-bottom: 1.5rem;
}

.pokemon-name-detail {
    font-size: 2rem;
    font-weight: bold;
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.pokemon-number {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.pokemon-types-detail {
    margin-bottom: 1.5rem;
}

.pokemon-stats {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.5rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
}

.stat-name {
    font-weight: bold;
    color: #2e7d32;
}

.stat-value {
    font-weight: bold;
    color: #1b5e20;
    font-size: 1.1rem;
}

.pokemon-description {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.pokemon-extra-info {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 1.5rem;
}

.extra-info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding: 0.5rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
}

.extra-info-label {
    font-weight: bold;
    color: #2e7d32;
}

.extra-info-value {
    color: #1b5e20;
}

.pokemon-card {
    background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 
        0 5px 15px rgba(46, 125, 50, 0.2),
        0 0 20px rgba(76, 175, 80, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.pokemon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, #2e7d32, #76ff03);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.pokemon-card:hover::before {
    opacity: 1;
}

.pokemon-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(46, 125, 50, 0.3),
        0 5px 25px rgba(118, 255, 3, 0.2);
    background: linear-gradient(145deg, #c8e6c9, #a5d6a7);
}

.pokemon-sprite {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    background: radial-gradient(circle at 30% 30%, #81c784, #66bb6a 40%, #2e7d32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 
        0 0 20px rgba(76, 175, 80, 0.4),
        inset 0 0 15px rgba(46, 125, 50, 0.2);
    position: relative;
    animation: gentleFloat 4s ease-in-out infinite;
}

.pokemon-sprite::after {
    content: '🌿';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(76, 175, 80, 0.5));
    animation: leafSpin 3s linear infinite;
}

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

@keyframes leafSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pokemon-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.pokemon-type {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #fff;
    margin: 0.2rem;
}

.type-fire { background: #f08030; }
.type-water { background: #6890f0; }
.type-doge { background: #ffd700; }
.type-grass { background: #78c850; }
.type-electric { background: #f8d030; }
.type-psychic { background: #f85888; }
.type-ice { background: #98d8d8; }
.type-dragon { background: #7038f8; }
.type-dark { background: #705848; }
.type-fairy { background: #ee99ac; }
.type-normal { background: #a8a878; }
.type-fighting { background: #c03028; }
.type-flying { background: #a890f0; }
.type-poison { background: #a040a0; }
.type-ground { background: #e0c068; }
.type-rock { background: #b8a038; }
.type-bug { background: #a8b820; }
.type-ghost { background: #705898; }
.type-steel { background: #b8b8d0; }

.battle-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
}

.battle-arena {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.trainer {
    text-align: center;
}

.trainer h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pokemon-slot {
    width: 250px;
    height: 300px;
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.blurred-opponent {
    filter: blur(8px);
    opacity: 0.6;
    position: relative;
}

.blurred-controls {
    filter: blur(6px);
    opacity: 0.5;
    position: relative;
    pointer-events: none;
}

.blurred-battle {
    position: relative;
}

.blurred-battle::before {
    content: 'COMING SOON';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 1.5rem;
    z-index: 100;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hp-bar {
    width: 100%;
    height: 20px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.hp-fill {
    height: 100%;
    background: linear-gradient(90deg, #f44336, #ffc107, #4caf50);
    width: 100%;
    transition: width 0.5s;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.vs-indicator {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #76ff03, #2e7d32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: pulse 2s ease-in-out infinite;
}

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

.battle-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.battle-btn {
    background: linear-gradient(45deg, #2e7d32, #66bb6a);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
}

.battle-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #43a047, #76ff03);
    box-shadow: 
        0 5px 20px rgba(46, 125, 50, 0.3),
        0 3px 15px rgba(118, 255, 3, 0.3);
}

.about-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
}

.about-content {
    background: rgba(255,255,255,0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.partnership-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.partner-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    border-color: #4caf50;
}

.partner-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%) brightness(1.1);
    transition: all 0.3s ease;
}

.partner-logo:hover .partner-image {
    filter: grayscale(0%) brightness(1.2);
}

.footer {
    background: linear-gradient(90deg, #1b5e20, #2e7d32, #43a047);
    color: #fff;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    box-shadow: 0 -4px 10px rgba(27, 94, 32, 0.3);
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .pokemon-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .battle-arena {
        flex-direction: column;
        gap: 2rem;
    }
    
    .battle-controls {
        flex-wrap: wrap;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .partnership-logos {
        flex-direction: column;
        gap: 2rem;
    }
    
    .partner-logo {
        padding: 1.5rem;
        width: 80%;
        margin: 0 auto;
    }
    
    .partner-image {
        height: 60px;
    }
}