
/*
Theme Name: PandaFiT Neon Premium
Author: ChatGPT
Version: 2.0
Description: Premium Web3 GameFi WordPress Theme
*/

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,sans-serif;
    background:#050505;
    color:white;
    overflow-x:hidden;
}

.background-glow{
    position:fixed;
    width:700px;
    height:700px;
    background:#8cff00;
    filter:blur(180px);
    opacity:0.1;
    top:-250px;
    right:-100px;
    z-index:-1;
}

.top-fixed-button{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    z-index:9999;
}

.cta-button{
    display:inline-block;
    padding:18px 36px;
    border-radius:18px;
    background:linear-gradient(135deg,#8cff00,#c5ff33);
    color:black;
    text-decoration:none;
    font-weight:900;
    font-size:22px;
    transition:0.3s;
    box-shadow:0 0 35px rgba(140,255,0,0.7);
    animation:pulse 1.8s infinite;
}

.cta-button:hover{
    transform:scale(1.08);
}

@keyframes pulse{
    0%{
        transform:scale(1);
        box-shadow:0 0 15px rgba(140,255,0,0.4);
    }
    50%{
        transform:scale(1.06);
        box-shadow:0 0 45px rgba(140,255,0,1);
    }
    100%{
        transform:scale(1);
        box-shadow:0 0 15px rgba(140,255,0,0.4);
    }
}

.hero{
    max-width:1300px;
    margin:auto;
    padding:120px 20px 40px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.hero-image{
    width:100%;
    max-width:460px;
    border-radius:30px;
    box-shadow:0 0 40px rgba(128,255,0,0.3);
}

.hero-content{
    max-width:560px;
}

.hero h1{
    font-size:62px;
    line-height:0.95;
    margin-bottom:25px;
    font-weight:900;
}

.hero h1 span{
    color:#b4ff00;
    text-shadow:0 0 15px rgba(180,255,0,0.8);
}

.hero p{
    font-size:22px;
    line-height:1.5;
    color:#d8d8d8;
}

.features{
    max-width:1300px;
    margin:50px auto;
    padding:0 20px;
}

.features img{
    width:100%;
    border-radius:30px;
    box-shadow:0 0 35px rgba(128,255,0,0.2);
}

.info{
    max-width:1300px;
    margin:auto;
    padding:40px 20px 100px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(140,255,0,0.18);
    border-radius:25px;
    padding:30px;
    backdrop-filter:blur(10px);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-6px);
    border-color:#b4ff00;
    box-shadow:0 0 30px rgba(180,255,0,0.25);
}

.card h2{
    color:#b4ff00;
    margin-bottom:15px;
    font-size:28px;
}

.card p{
    color:#d6d6d6;
    line-height:1.6;
}

footer{
    text-align:center;
    padding:20px 20px 80px;
}

.footer-button{
    display:inline-block;
    padding:20px 50px;
    background:#b4ff00;
    color:black;
    text-decoration:none;
    border-radius:18px;
    font-size:24px;
    font-weight:900;
    box-shadow:0 0 30px rgba(180,255,0,0.6);
}

.edit-note{
    text-align:center;
    color:#8e8e8e;
    padding-bottom:40px;
    font-size:14px;
}

@media(max-width:768px){

    .hero{
        padding-top:120px;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:18px;
    }

    .cta-button{
        font-size:18px;
        padding:16px 26px;
    }

    .top-fixed-button{
        width:90%;
        text-align:center;
    }
}
