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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    min-height: 100vh;
    color: #333;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo-img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1em;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background: linear-gradient(145deg, #ff6b6b, #ff5252);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

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

.header {
    text-align: center;
    margin-bottom: 50px;
}

.logo {
    width: 300px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(2deg);
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-text {
    text-align: center;
}

.hero-title {
    font-size: 3em;
    color: #2c3e50;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.3em;
    color: #34495e;
    margin-bottom: 30px;
    line-height: 1.6;
}

.profile-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.02) rotate(-1deg);
}

.tcg-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}

.tcg-title {
    text-align: center;
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.tcg-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #34495e;
    margin-bottom: 40px;
    line-height: 1.6;
}

.tcg-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: -20px;
    margin-bottom: 40px;
    height: 280px;
    perspective: 1000px;
}

.tcg-image-container {
    position: relative;
    width: 180px;
    height: 250px;
    margin: 0 -15px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), z-index 0s 0.2s;
    transform-origin: bottom center;
    cursor: pointer;
}

.tcg-image-container:nth-child(1) {
    transform: rotate(-15deg) translateY(20px);
    z-index: 1;
}

.tcg-image-container:nth-child(2) {
    transform: rotate(-5deg) translateY(10px);
    z-index: 2;
}

.tcg-image-container:nth-child(3) {
    transform: rotate(5deg) translateY(10px);
    z-index: 3;
}

.tcg-image-container:nth-child(4) {
    transform: rotate(15deg) translateY(20px);
    z-index: 4;
}

.tcg-image-container.active {
    transform: rotate(0deg) translateY(-30px) scale(1.1);
    z-index: 10 !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), z-index 0s 0s;
}

.tcg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 3px solid #fff;
    transition: all 0.3s ease;
}

.tcg-image-container.active .tcg-image {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: #ffcc00;
}

.tcg-cta {
    text-align: center;
}

.tcg-button {
    display: inline-flex;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(145deg, #ff6b6b, #ff5252);
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
    border: 2px solid transparent;
}

.tcg-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.6);
    background: linear-gradient(145deg, #ff5252, #ff6b6b);
}

.tcg-button-icon {
    width: 30px;
    height: 30px;
    margin-right: 12px;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tcg-pocket-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}

.tcg-pocket-title {
    text-align: center;
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.tcg-pocket-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #34495e;
    margin-bottom: 40px;
    line-height: 1.6;
}

.tcg-pocket-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: -20px;
    margin-bottom: 40px;
    height: 280px;
    perspective: 1000px;
}

.tcg-pocket-image-container {
    position: relative;
    width: 180px;
    height: 250px;
    margin: 0 -15px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), z-index 0s 0.2s;
    transform-origin: bottom center;
    cursor: pointer;
}

.tcg-pocket-image-container:nth-child(1) {
    transform: rotate(-15deg) translateY(20px);
    z-index: 1;
}

.tcg-pocket-image-container:nth-child(2) {
    transform: rotate(-5deg) translateY(10px);
    z-index: 2;
}

.tcg-pocket-image-container:nth-child(3) {
    transform: rotate(5deg) translateY(10px);
    z-index: 3;
}

.tcg-pocket-image-container:nth-child(4) {
    transform: rotate(15deg) translateY(20px);
    z-index: 4;
}

.tcg-pocket-image-container.active {
    transform: rotate(0deg) translateY(-30px) scale(1.1);
    z-index: 10 !important;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), z-index 0s 0s;
}

.tcg-pocket-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 3px solid #fff;
    transition: all 0.3s ease;
}

.tcg-pocket-image-container.active .tcg-pocket-image {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: #00d4ff;
}

.tcg-pocket-cta {
    text-align: center;
}

.tcg-pocket-button {
    display: inline-flex;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(145deg, #4ecdc4, #45b7d1);
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
    border: 2px solid transparent;
}

.tcg-pocket-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.6);
    background: linear-gradient(145deg, #45b7d1, #4ecdc4);
}

.tcg-pocket-button-icon {
    width: 30px;
    height: 30px;
    margin-right: 12px;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.twitch-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}

.twitch-title {
    text-align: center;
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.twitch-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #34495e;
    margin-bottom: 40px;
    line-height: 1.6;
}

.twitch-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.stream-status {
    margin-bottom: 30px;
}

.status-indicator {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
}

.status-indicator.offline {
    background: linear-gradient(145deg, #95a5a6, #7f8c8d);
    color: white;
}

.status-indicator.live {
    background: linear-gradient(145deg, #e74c3c, #c0392b);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: currentColor;
    margin-right: 10px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.schedule-title {
    font-size: 1.5em;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    align-items: center;
    transition: transform 0.2s ease;
}

.schedule-item:hover {
    transform: translateY(-2px);
}

.day {
    font-weight: bold;
    color: #6c5ce7;
}

.time {
    color: #2d3436;
    font-weight: 600;
}

.game {
    color: #636e72;
    font-style: italic;
}

.twitch-button {
    display: inline-flex;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(145deg, #9146ff, #772ce8);
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(145, 70, 255, 0.4);
    border: 2px solid transparent;
    margin-bottom: 30px;
    width: 100%;
    justify-content: center;
}

.twitch-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(145, 70, 255, 0.6);
    background: linear-gradient(145deg, #772ce8, #9146ff);
}

.twitch-button-icon {
    width: 30px;
    height: 30px;
    margin-right: 12px;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.twitch-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: linear-gradient(145deg, #ffffff, #f1f3f4);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 1.8em;
    font-weight: bold;
    color: #9146ff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9em;
    color: #636e72;
}

.twitch-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: linear-gradient(145deg, #fff, #f8f9fa);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 1.3em;
    margin-right: 12px;
}

.feature-text {
    color: #2d3436;
    font-weight: 500;
}

.social-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
}

.social-title {
    text-align: center;
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.social-link {
    display: block;
    padding: 25px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    overflow: hidden;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.social-content {
    width: 100%;
}

.social-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    margin-right: 15px;
    font-size: 1.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.social-name {
    font-size: 1.3em;
    font-weight: bold;
    color: #2c3e50;
}

.social-description {
    font-size: 1em;
    color: #5a6c7d;
    line-height: 1.5;
    margin: 0;
}

.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.youtube { background: #ff0000; color: white; }
.twitch { background: #9146ff; color: white; }
.discord { background: #5865f2; color: white; }
.tiktok { background: #000000; color: white; }
.email { background: #34495e; color: white; }

.pokeball-decoration {
    position: fixed;
    width: 80px;
    height: 80px;
    opacity: 0.15;
    z-index: -1;
}

.pokeball-decoration::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(to bottom,
        #ff4444 0%,
        #ff6666 45%,
        #000000 45%,
        #000000 50%,
        #222222 50%,
        #000000 55%,
        #ffffff 55%,
        #f0f0f0 100%);
    box-shadow:
        inset -10px -10px 20px rgba(0,0,0,0.3),
        inset 10px 10px 20px rgba(255,255,255,0.2),
        0 0 30px rgba(0,0,0,0.2);
}

.pokeball-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
        #ffffff 20%,
        #cccccc 25%,
        #999999 50%,
        #000000 55%,
        #333333 100%);
    border: 3px solid #000000;
    box-shadow:
        inset -3px -3px 6px rgba(0,0,0,0.5),
        inset 3px 3px 6px rgba(255,255,255,0.8),
        0 0 10px rgba(0,0,0,0.3);
}

.pokeball-decoration:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: float1 8s ease-in-out infinite;
}

.pokeball-decoration:nth-child(2) {
    top: 40%;
    right: 15%;
    animation: float2 10s ease-in-out infinite 3s;
}

.pokeball-decoration:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation: float3 9s ease-in-out infinite 6s;
}

.pokeball-decoration:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation: float4 7s ease-in-out infinite 1.5s;
}

@keyframes float1 {
    0%, 100% { transform: scale(0.8) translateY(0px) rotate(0deg); }
    50% { transform: scale(0.8) translateY(-25px) rotate(180deg); }
}

@keyframes float2 {
    0%, 100% { transform: scale(1.2) translateY(0px) rotate(0deg); }
    50% { transform: scale(1.2) translateY(-30px) rotate(-180deg); }
}

@keyframes float3 {
    0%, 100% { transform: scale(0.9) translateY(0px) rotate(0deg); }
    50% { transform: scale(0.9) translateY(-20px) rotate(360deg); }
}

@keyframes float4 {
    0%, 100% { transform: scale(1.1) translateY(0px) rotate(0deg); }
    50% { transform: scale(1.1) translateY(-35px) rotate(-360deg); }
}

.footer {
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    color: #2c3e50;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2em;
    }

    .logo {
        width: 250px;
    }

    .social-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-link {
        padding: 20px;
    }

    .social-name {
        font-size: 1.2em;
    }

    .social-description {
        font-size: 0.95em;
    }

    .tcg-title {
        font-size: 2em;
    }

    .tcg-gallery {
        height: 200px;
        gap: 0;
    }

    .tcg-image-container {
        width: 120px;
        height: 170px;
        margin: 0 -10px;
    }

    .tcg-image-container:nth-child(1) {
        transform: rotate(-20deg) translateY(15px);
    }

    .tcg-image-container:nth-child(2) {
        transform: rotate(-7deg) translateY(8px);
    }

    .tcg-image-container:nth-child(3) {
        transform: rotate(7deg) translateY(8px);
    }

    .tcg-image-container:nth-child(4) {
        transform: rotate(20deg) translateY(15px);
    }

    .tcg-image-container.active {
        transform: rotate(0deg) translateY(-20px) scale(1.05);
    }

    .tcg-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .tcg-pocket-title {
        font-size: 2em;
    }

    .tcg-pocket-gallery {
        height: 200px;
        gap: 0;
    }

    .tcg-pocket-image-container {
        width: 120px;
        height: 170px;
        margin: 0 -10px;
    }

    .tcg-pocket-image-container:nth-child(1) {
        transform: rotate(-20deg) translateY(15px);
    }

    .tcg-pocket-image-container:nth-child(2) {
        transform: rotate(-7deg) translateY(8px);
    }

    .tcg-pocket-image-container:nth-child(3) {
        transform: rotate(7deg) translateY(8px);
    }

    .tcg-pocket-image-container:nth-child(4) {
        transform: rotate(20deg) translateY(15px);
    }

    .tcg-pocket-image-container.active {
        transform: rotate(0deg) translateY(-20px) scale(1.05);
    }

    .tcg-pocket-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .twitch-title {
        font-size: 2em;
    }

    .twitch-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .schedule-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 8px;
    }

    .twitch-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-item {
        padding: 12px;
    }

    .stat-number {
        font-size: 1.5em;
    }

    .twitch-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 10px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        transform: scaleY(0);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -6px);
    }

    .nav-link {
        font-size: 1.2em;
        padding: 15px 20px;
        width: 80%;
        margin: 0 auto;
    }
}