/* General Styles */
body {
    margin: 0;
    font-family: 'Fredoka One', cursive;
    color: #fff;
    overflow-x: hidden;
}

.nature-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('Image/back_upscaled.webp') no-repeat center center/cover;
    z-index: -1;
    filter: brightness(1.1) saturate(1.5);
}

.froggy-page {
    background: url('Image/FroggyBack.webp') no-repeat center center/cover;
    min-height: 100vh;
}

.doggy-page {
    background: url('Image/DoggyBack.webp') no-repeat center center/cover;
    min-height: 100vh;
}

.landing-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 2rem 1rem;
}

.main-title {
    font-size: 6rem;
    margin: 0 0 2rem;
    animation: nature-glow 2s infinite alternate, float 3s infinite ease-in-out;
    color: #2E7D32;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.9), 3px 3px 0 #4CAF50, -3px -3px 0 #4CAF50;
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 1rem;
}

.highlight {
    color: #4CAF50;
}

.highlight-doggy {
    color: #FFD700;
    /* No text shadow for Doggy */
}

.versus {
    color: #FFFFFF;
    font-size: 4rem;
    margin: 0 1rem;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.9), 2px 2px 0 #FFFFFF, -2px -2px 0 #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
}

.subtitle {
    font-size: 2rem;
    margin-top: 1rem;
    animation: fadeIn 2s ease-in-out;
    color: #FFF;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8), 2px 2px 0 #4CAF50, 4px 4px 0 #8BC34A;
}

.team-list {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.team {
    position: relative;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.team:hover {
    transform: scale(1.1);
}

.image-container {
    position: relative;
    display: inline-block;
}

.team-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 5px solid #ffffff;
    transition: transform 0.3s ease;
    box-shadow: 5px 5px 0 #4CAF50, 10px 10px 0 #8BC34A;
}

.team-froggy .team-image {
    background: #98df70; /* Light green for Froggy */
}

.team-doggy .team-image {
    background: #f3e887; /* Light yellow for Doggy */
}

.team-image-clickable {
    animation: scaleBounce 1.5s infinite;
    cursor: pointer;
}

.join-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 215, 0, 0.9);
    color: #4CAF50;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 1.2rem;
    text-shadow: 1px 1px 0 #8BC34A;
    z-index: 2;
    white-space: nowrap;
}

.team h2 {
    font-size: 1.5rem;
    margin-top: 1rem;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8), 2px 2px 0 #4CAF50, 4px 4px 0 #8BC34A;
}

.team-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.team-page .main-title {
    font-size: 6rem;
    margin: 0;
    animation: nature-glow 2s infinite alternate, float 3s infinite ease-in-out;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
}

.froggy-page .main-title {
    color: #2E7D32;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.9), 3px 3px 0 #4CAF50, -3px -3px 0 #4CAF50;
}

.doggy-page .main-title {
    color: #FFD700;
    /* No text shadow for Doggy */
}

.team-page .subtitle {
    font-size: 2rem;
    margin-top: 1rem;
    animation: fadeIn 2s ease-in-out;
    color: #FFF;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.8), 2px 2px 0 #4CAF50, 4px 4px 0 #8BC34A;
}

.content .team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid white;
    margin: 2rem 0;
    animation: bounce 2s infinite;
    box-shadow: 5px 5px 0 #4CAF50, 10px 10px 0 #8BC34A;
    object-fit: cover;
}

.froggy-page .content .team-image {
    background: #C5E1A5; /* Light green for Froggy */
}

.doggy-page .content .team-image {
    background: #FFF9C4; /* Light yellow for Doggy */
}

.telegram-link {
    text-decoration: none;
    color: white;
    margin-top: 2rem;
    transition: transform 0.3s ease;
}

.telegram-link:hover {
    transform: scale(1.1);
}

.stat-box {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    padding: 1rem 2rem;
    border-radius: 15px;
    animation: fadeIn 2s ease-in-out;
    box-shadow: 5px 5px 0 #4CAF50, 10px 10px 0 #8BC34A;
}

.stats {
    display: flex;
    gap: 2rem;
    margin: 4rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-box h2 {
    font-size: 1.5rem;
    margin: 0;
    color: #FFD700;
}

.stat-box p {
    font-size: 1.2rem;
    margin: 0.5rem 0 0;
    color: #FFF;
}

.description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 4rem auto;
    animation: fadeIn 2s ease-in-out;
    color: #FFF;
    text-shadow: 2px 2px 0 #4CAF50, 4px 4px 0 #8BC34A;
}

.button-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 4rem;
    flex-wrap: nowrap;
}

.btn.buy-now, .btn.back-to-main {
    width: 200px;
    height: 60px;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 5px 5px 0 #4CAF50, 10px 10px 0 #8BC34A;
    white-space: nowrap;
}

.btn.buy-now {
    background: #FFD700;
    color: #4CAF50;
}

.btn.buy-now:hover {
    background: #FFC107;
}

.btn.back-to-main {
    background: #4CAF50;
    color: #FFD700;
    box-shadow: 5px 5px 0 #FFD700, 10px 10px 0 #8BC34A;
}

.btn.back-to-main:hover {
    background: #45a049;
}

.socials {
    margin: 2rem 0;
}

.social-toggle {
    background: #FFD700;
    color: #4CAF50;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 5px 5px 0 #4CAF50, 10px 10px 0 #8BC34A;
}

.social-toggle:hover {
    background: #FFC107;
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.social-links.active {
    max-height: 150px;
}

.social-link img {
    width: 96px;
    height: 96px;
    transition: transform 0.3s ease;
}

.social-link:hover img {
    transform: scale(1.2);
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #FFF;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.popup.active .popup-content {
    transform: scale(1);
}

.popup-content p {
    font-size: 1.5rem;
    color: #4CAF50;
    margin: 0 0 1rem;
    text-shadow: 1px 1px 0 #8BC34A;
}

.popup-close {
    background: #FFD700;
    color: #4CAF50;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.popup-close:hover {
    background: #FFC107;
}

.contract-address {
    margin: 4rem 0;
    text-align: center;
}

.contract-address h2 {
    font-size: 1.5rem;
    margin: 0;
    color: #FFD700;
    text-shadow: 2px 2px 0 #4CAF50, 4px 4px 0 #8BC34A;
}

.ca-text {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: #FFF;
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 5px 5px 0 #4CAF50, 10px 10px 0 #8BC34A;
    word-wrap: break-word;
}

.copy-container {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.copy-btn {
    background: #FFD700;
    color: #4CAF50;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 5px 5px 0 #4CAF50, 10px 10px 0 #8BC34A;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-btn:hover {
    background: #FFC107;
}

.clipboard-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url('https://img.icons8.com/material-outlined/24/4CAF50/clipboard.png') no-repeat center center;
    background-size: contain;
}

.copy-feedback {
    opacity: 0;
    color: #FFC107;
    font-size: 1rem;
    margin-left: 10px;
    transition: opacity 0.3s ease;
    position: absolute;
    left: 110%;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.copy-feedback.show {
    opacity: 1;
}

.footer {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 1;
}

.footer p {
    margin: 0;
    font-size: 1rem;
    color: #FFF;
    text-shadow: 1px 1px 0 #4CAF50;
    white-space: nowrap;
}

/* Showdown Section */
.showdown-section {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    text-align: left;
    box-shadow: 5px 5px 0 #4CAF50, 10px 10px 0 #8BC34A;
    animation: fadeIn 2s ease-in-out;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

@supports (background: rgba(0, 0, 0, 0.7)) {
    .showdown-section {
        background: rgba(0, 0, 0, 0.7);
    }
}
@supports not (background: rgba(0, 0, 0, 0.7)) {
    .showdown-section {
        background: #000000;
        opacity: 0.7;
    }
}

.showdown-title {
    font-size: 2.5rem;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.9), 3px 3px 0 #4CAF50, -3px -3px 0 #4CAF50;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-align: center;
}

.showdown-text {
    font-size: 1.2rem;
    color: #FFF;
    text-shadow: 1px 1px 0 #4CAF50;
    margin: 1rem 0;
    line-height: 1.6;
}

.showdown-text strong {
    color: #FFD700;
    text-shadow: 1px 1px 0 #4CAF50, 2px 2px 0 #8BC34A;
}

.showdown-text .highlight {
    color: #4CAF50;
    text-shadow: none;
}

.showdown-text .highlight-doggy {
    color: #FFD700;
    text-shadow: none;
}

/* FAQ Page Styles */
.faq-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 2rem 1rem;
}

.faq-page .main-title {
    font-size: 6rem;
    margin: 0 0 2rem;
    animation: nature-glow 2s infinite alternate, float 3s infinite ease-in-out;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    gap: 1rem;
}

.faq-page .main-title .highlight {
    color: #4CAF50;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.9), 3px 3px 0 #4CAF50, -3px -3px 0 #4CAF50;
}

.faq-page .main-title .highlight-doggy {
    color: #FFD700;
    /* No text shadow for Doggy */
}

.faq-page .main-title .versus {
    color: #FFFFFF;
    font-size: 4rem;
    margin: 0 1rem;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.9), 2px 2px 0 #FFFFFF, -2px -2px 0 #FFFFFF;
}

.faq-page .main-title span:not(.highlight):not(.highlight-doggy):not(.versus) {
    color: #FFFFFF;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.9);
}

.faq-section {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    text-align: left;
    box-shadow: 5px 5px 0 #4CAF50, 10px 10px 0 #8BC34A;
    animation: fadeIn 2s ease-in-out;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h2 {
    font-size: 1.5rem;
    color: #FFD700;
    text-shadow: 1px 1px 0 #4CAF50, 2px 2px 0 #8BC34A;
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 1.2rem;
    color: #FFF;
    text-shadow: 1px 1px 0 #4CAF50;
    line-height: 1.6;
}

.faq-item ul {
    list-style-type: none;
    padding-left: 1rem;
}

.faq-item ul li {
    font-size: 1.2rem;
    color: #FFF;
    text-shadow: 1px 1px 0 #4CAF50;
    margin: 0.5rem 0;
    position: relative;
}

.faq-item ul li:before {
    content: "•";
    color: #FFD700;
    font-size: 1.5rem;
    position: absolute;
    left: -1rem;
}

.faq-item .highlight {
    color: #4CAF50;
    text-shadow: 1px 1px 0 #4CAF50;
}

.faq-item .highlight-doggy {
    color: #FFD700;
    /* No text shadow for Doggy */
}

.faq-link {
    text-decoration: none;
    color: white;
    margin-top: 2rem;
    transition: transform 0.3s ease;
}

.faq-link:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes scaleBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes nature-glow {
    0% { text-shadow: 0 0 15px rgba(0, 0, 0, 0.9), 3px 3px 0 #4CAF50, -3px -3px 0 #4CAF50; }
    100% { text-shadow: 0 0 25px rgba(0, 0, 0, 0.9), 3px 3px 0 #4CAF50, -3px -3px 0 #4CAF50; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .main-title { font-size: 4.5rem; }
    .versus { font-size: 3rem; }
    .subtitle { font-size: 1.5rem; }
    .team-image { width: 240px; height: 240px; }
    .team-page .main-title { font-size: 4.5rem; }
    .team-page .subtitle { font-size: 1.5rem; }
    .showdown-title { font-size: 2rem; }
    .showdown-text { font-size: 1.1rem; }
    .faq-page .main-title { font-size: 4.5rem; }
    .faq-page .main-title .versus { font-size: 3rem; }
    .faq-item h2 { font-size: 1.4rem; }
    .faq-item p, .faq-item ul li { font-size: 1.1rem; }
}

@media (max-width: 768px) {
    .main-title { font-size: 3.5rem; }
    .versus { font-size: 2rem; }
    .subtitle { font-size: 1.2rem; }
    .team-list { flex-direction: column; gap: 1.5rem; }
    .team-image { width: 180px; height: 180px; }
    .team h2 { font-size: 1.2rem; }
    .telegram-link { margin-top: 1.5rem; }
    .stat-box { padding: 0.75rem 1.5rem; }
    .team-page .main-title { font-size: 3.5rem; }
    .team-page .subtitle { font-size: 1.2rem; }
    .content .team-image { width: 150px; height: 150px; }
    .stats { flex-direction: column; gap: 1rem; margin: 2.5rem 0; }
    .description { font-size: 1rem; max-width: 90%; margin: 2.5rem auto; }
    .contract-address { margin: 2.5rem 0; }
    .button-container { margin-top: 2.5rem; }
    .socials { margin: 1.5rem 0; }
    .social-link img { width: 72px; height: 72px; }
    .landing-page { padding: 1.5rem 0.5rem; }
    .showdown-section { padding: 1.5rem; width: 95%; background: rgba(0, 0, 0, 0.7); }
    .showdown-title { font-size: 1.8rem; }
    .showdown-text { font-size: 1rem; }
    .faq-page .main-title { font-size: 3.5rem; }
    .faq-page .main-title .versus { font-size: 2rem; }
    .faq-section { padding: 1.5rem; width: 95%; }
    .faq-item h2 { font-size: 1.3rem; }
    .faq-item p, .faq-item ul li { font-size: 1rem; }
}

@media (max-width: 540px) {
    .main-title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 0.5rem;
        white-space: normal;
    }
    .versus { font-size: 1.5rem; }
    .subtitle { font-size: 1rem; }
    .team-image { width: 150px; height: 150px; }
    .team h2 { font-size: 1rem; }
    .landing-page { padding: 1rem 0.5rem; }
    .join-label { font-size: 0.9rem; padding: 0.3rem 0.6rem; top: -20px; }
    .team-page .main-title { font-size: 2.5rem; }
    .team-page .subtitle { font-size: 1rem; }
    .content .team-image { width: 120px; height: 120px; }
    .stat-box h2 { font-size: 1.2rem; }
    .stat-box p { font-size: 1rem; }
    .ca-text { font-size: 1rem; padding: 0.75rem; }
    .copy-btn { font-size: 0.9rem; padding: 0.3rem 0.6rem; }
    .button-container { flex-wrap: wrap; }
    .social-link img { width: 48px; height: 48px; }
    .showdown-section { padding: 1rem; margin-top: 1.5rem; width: 95%; background: rgba(0, 0, 0, 0.8); }
    .showdown-title { font-size: 1.5rem; }
    .showdown-text { font-size: 0.9rem; line-height: 1.5; }
    .showdown-text br { display: none; }
    .faq-page .main-title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 0.5rem;
        white-space: normal;
    }
    .faq-page .main-title .versus { font-size: 1.5rem; }
    .faq-section { padding: 1rem; margin-top: 1.5rem; width: 95%; background: rgba(0, 0, 0, 0.8); }
    .faq-item h2 { font-size: 1.2rem; }
    .faq-item p, .faq-item ul li { font-size: 0.9rem; }
    .faq-item ul li:before { font-size: 1.2rem; left: -0.8rem; }
}

@media (max-width: 360px) {
    .button-container {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    .btn.buy-now, .btn.back-to-main {
        width: 150px;
        height: 50px;
        font-size: 1rem;
    }
    .footer p { font-size: 0.9rem; }
    .showdown-section { padding: 0.75rem; background: rgba(0, 0, 0, 0.8); }
    .showdown-title { font-size: 1.3rem; }
    .showdown-text { font-size: 0.85rem; }
    .faq-section { padding: 0.75rem; }
    .faq-item h2 { font-size: 1.1rem; }
    .faq-item p, .faq-item ul li { font-size: 0.85rem; }
}

@media (max-width: 320px) {
    .footer p { font-size: 0.8rem; }
}