/* tcg.html — TCG activity page styles */

.tcg-page {
    background-color: var(--bg);
}

.tcg-hero-content {
    padding: 20px 0;
}

.tcg-player {
    font-family: "Michroma";
    margin: 16px 0 8px;
}

.tcg-player-label {
    font-size: 0.75rem;
    opacity: 0.7;
    letter-spacing: 0.15em;
    margin-right: 12px;
}

.tcg-player-name {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    font-family: "Michroma";
}

.tcg-since {
    font-family: "Michroma";
    font-size: 0.8rem;
    opacity: 0.7;
}

.tcg-record-grid {
    max-width: 600px;
    margin: 20px auto;
    perspective: 1000px;
}

.tcg-record-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 20px 30px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 2px solid #333;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2);
    font-weight: 900;
    font-size: 1.2rem;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    color: var(--main);
}

.tcg-record-row::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0) 40%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 60%);
    transform: rotate(30deg);
    animation: holo-shine 4s infinite linear;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.tcg-record-row:hover::before { opacity: 1; }

.tcg-record-row:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 10px 10px 0px rgba(255, 215, 0, 0.5);
    border-color: #e60012;
}

@keyframes holo-shine {
    0% { transform: translate(-150%, -150%) rotate(30deg); }
    100% { transform: translate(150%, 150%) rotate(30deg); }
}

.tcg-achievement {
    background: linear-gradient(135deg, var(--main), var(--accent));
    color: var(--white);
    padding: 20px 40px;
    border-radius: 50px;
    font-family: "Michroma";
    font-size: 1.05rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 24px;
}

/* PokeLix feature grid */
.pokelix-description {
    font-size: 1.1rem;
    margin: 20px auto;
    max-width: 600px;
    line-height: 1.8;
}

.pokelix-site-name {
    font-family: "Michroma", sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin: 30px 0;
    letter-spacing: 0.1em;
    color: var(--main);
}

.pokelix-features-grid {
    max-width: 860px;
    margin: 0 auto;
}

.pokelix-feature-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px 36px;
    margin-bottom: 24px;
    box-shadow: 0 6px 20px var(--shadow-color);
}

.pokelix-feature-text h4 {
    font-family: "Michroma", sans-serif;
    font-size: 1rem;
    color: var(--main);
    margin: 0 0 10px;
    line-height: 1.5;
}

.pokelix-feature-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

.pokelix-feature-img img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px var(--shadow-color);
}

.pokelix-beta-notice {
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #ff0000, #ffcc00);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
    animation: pulse 2s infinite;
    text-decoration: none;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255, 0, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

@media (max-width: 960px) {
    .pokelix-box {
        grid-template-columns: 1fr;
        padding: 32px;
    }
}

@media (max-width: 640px) {
    .pokelix-feature-row {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }
}

@media (max-width: 768px) {
    .tcg-record-row { font-size: 1rem; padding: 16px 20px; }
}
