:root {
    --flag-green: #006847;
    --flag-white: #FFFFFF;
    --flag-red: #CE1126;
    --kick-green: #53FC18;
    --text-color: #212529;
    --text-muted: #495057;
    --card-bg: rgba(255, 255, 255, 0.75);
    --card-border: rgba(255, 255, 255, 0.6);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--flag-white);
    background-image: linear-gradient(135deg, var(--flag-green) 0%, var(--flag-white) 50%, var(--flag-red) 100%);
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    text-align: center;
}

.subtitle {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 1.5rem auto;
    color: var(--text-muted);
    text-align: center;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
}

.tts-highlight {
    background-color: rgba(0, 104, 71, 0.1);
    border-left: 4px solid var(--flag-green);
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    text-align: center;
}

.tts-highlight p {
    margin: 0;
    color: #004d33;
    font-weight: 500;
}

.tts-highlight strong {
    color: #002b1c;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.6);
    color: var(--text-color);
    padding: 1rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 75px;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    border-color: rgba(0, 0, 0, 0.1);
}

.btn--with-logo {
    justify-content: flex-start;
    gap: 1rem;
}

.main-logo {
    height: 32px;
}

.btn-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.5rem;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.payment-icons img {
    height: 16px;
    opacity: 0.7;
}

.btn-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

.btn-kick-subscribe {
    flex-direction: column;
    background-color: var(--kick-green);
    color: #111;
    border: none;
    grid-column: 1 / -1;
}

.btn-kick-subscribe:hover {
    background-color: #49e015;
}

.btn-kick-subscribe .btn-subtitle {
    color: #333;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.profile-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--flag-white);
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.profile-text {
    flex: 1;
}

.profile-text h2 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.profile-text p {
    color: var(--text-muted);
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-platform {
    flex-direction: row;
    font-size: 1.1rem;
    border: none;
}

.btn-youtube {
    background-color: #FF0000;
    color: white;
}
.btn-youtube:hover {
    background-color: #cc0000;
}

.btn-kick {
    background-color: var(--kick-green);
    color: #111;
}
.btn-kick:hover {
    background-color: #49e015;
}

.footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-color);
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        text-align: center;
    }
    .profile-text {
        min-width: 100%;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem;
    }
    .platform-grid {
        grid-template-columns: 1fr;
    }
}

.animated-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated-card.visible {
    opacity: 1;
    transform: translateY(0);
}