@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0); 
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #0f0f11 0%, #121212 20%, #1d1b21 40%, #2c2a31 100%);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navbar */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 0 2%;
    height: 70px;
    backdrop-filter: blur(15px);
    background-color: #0f0f11;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid #0f0f11;
}

.left-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-text-logo {
    border-radius: 50%;
    object-fit: cover;
    width: 35px;
    height: 35px;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-left: 4px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    position: relative;
}

.nav-links li a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: #d203fc;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

/* Main */
main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

/* Hero */
.hero {
    text-align: center;
    padding: 90px 20px 150px;
    z-index: 10;
}

.hero-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 80px;
    position: relative;
    z-index: 20;
    animation: floatSlow 6s ease-in-out infinite, glowPulse 4s ease-in-out infinite;
    box-shadow:
        0 0 15px 5px rgba(210, 3, 252, 0.5),
        0 0 25px 10px rgba(210, 3, 252, 0.3);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.6rem;
    color: #ccc;
    margin-bottom: 2.5rem;
}

.invite-btn {
    background: #d203fc;
    color: #ffffff;
    font-weight: 570;
    padding: 22px 44px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 19px;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    margin-top: 7px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(210, 3, 252, 0.6);
}

.invite-btn:hover {
    background: #bb02d1;
    cursor: pointer;
    transform: scale(1.05);
    box-shadow:
        0 -4px 10px rgba(210, 3, 252, 0.7),
        0 8px 20px rgba(210, 3, 252, 0.7);
}

/* Sources Section */
.sources {
    text-align: center;
    padding: 90px 20px 150px;
}

.sources h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.sources p {
    font-size: 1.6rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.sources-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.sources-box {
    background: #d203fc;
    color: white;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 3px 8px rgba(210, 3, 252, 0.5);
    user-select: none;
    cursor: default;
    transition: background 0.3s ease;
}

.sources-box:hover {
    background: #bb02d1;
}

/* Premium Section */
.premium {
    text-align: center;
    padding: 80px 20px 150px;
    color: white;
}

.premium h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.premium-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d203fc;
    margin-left: 15px;
}

.premium p {
    font-size: 1.6rem;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.premium-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 960px;
    margin: 0 auto;
}

.card {
    background: #1f1d25;
    position: relative;
    border-radius: 25px;
    padding: 2.5rem;
    width: 350px;
    text-align: left;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.price {
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
    text-align: center;
}

.card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.card ul li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card ul hr {
    border: none;
    border-top: 1px solid #777589;
    margin: 16px 0;
}

.check {
    color: #28a745;
    font-weight: 900;
}

.cross {
    color: #e74c3c;
    font-weight: 900;
}

.buy-btn {
    display: inline-block;
    background: linear-gradient(90deg, #d203fc, #00d9ff);
    color: white;
    font-weight: 700;
    padding: 14px 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(210, 3, 252, 0.6);
    min-width: 180px;
    max-width: 200px;
    line-height: 1.2;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.buy-btn:hover {
    background: linear-gradient(90deg, #d203fc, #00d9ff);
    transform: scale(1.05);
    box-shadow:
        0 -4px 10px rgba(210, 3, 252, 0.7),
        0 8px 20px rgba(210, 3, 252, 0.7);
}

.buy-btn:disabled,
.buy-btn[disabled] {
    background: #555 !important;
    cursor: default;
    box-shadow: none;
    color: #ddd;
    pointer-events: none;
}

.buy-btn:disabled {
    background: #555;
    cursor: default;
    box-shadow: none;
}

.gradient-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(90deg, #d203fc, #00d9ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes glowPulse {

    0%,
    100% {
        box-shadow:
            0 0 15px 5px rgba(210, 3, 252, 0.5),
            0 0 25px 10px rgba(210, 3, 252, 0.3);
    }

    50% {
        box-shadow:
            0 0 25px 10px rgba(210, 3, 252, 0.8),
            0 0 40px 20px rgba(210, 3, 252, 0.6);
    }
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-10px) translateX(5px);
    }

    50% {
        transform: translateY(0) translateX(10px);
    }

    75% {
        transform: translateY(-10px) translateX(5px);
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: 0;
        height: calc(100vh - 70px);
        width: 200px;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transform: translateX(400px);
        transition: transform 0.3s ease-in-out;
        box-shadow: -3px 0 10px rgba(0, 0, 0, 0.7);
        z-index: 1500;
        overflow-y: auto;
    }
    
    .nav-links.nav-active {
        transform: translateX(0);
    }
    
    .burger {
        display: flex;
        z-index: 10000;
    }
    
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .toggle .line2 {
        opacity: 0;
    }
    
    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .premium-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
        max-width: 350px;
    }
}

.footer {
    background: #0f0f11;
    color: #ddd;
    padding: 20px 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    /* tonda come vuoi */
    object-fit: cover;
}

.footer-right a {
    color: #ddd;
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-right a:hover {
    color: #d203fc;
}

@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-right a {
        margin-left: 0;
        margin-right: 15px;
    }
}
.invite-info {
    background: #28262d;
    padding: 60px 40px;
    text-align: center;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.invite-info h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: #28262d;
}

.invite-info p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.85;
}
hr {
    border: none;
    height: 1px;
    background: #777589;
    width: 80%;
    margin: 20px auto;
}
.features {
    text-align: center;
    padding: 80px 20px 150px;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.features p {
    font-size: 1.6rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.section-divider {
    width: 60%;
    border: none;
    border-top: 1px solid #777589;
    margin: 2rem auto;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: #1f1d25;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: left;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #d203fc, #00d9ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.feature-item p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
}

.footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #0e0d13;
    color: #888;
    font-size: 14px;
    border-top: 1px solid #2a2a35;
}

@media screen and (max-width: 768px) {
    .feature-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.buttons-container {
    margin: 2rem 0;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.new-badge {
    background-color: #ff4757;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 12px;
    margin-left: 6px;
    vertical-align: middle;
    font-family: 'Poppins', sans-serif;
    user-select: none;
}

.recommended-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 0 0 0 20px;
    box-shadow: 0 2px 8px rgba(38, 117, 255, 0.6);
    user-select: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    pointer-events: none;
    z-index: 10;
}

.new-badge-navbar {
    background-color: #ff4757;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 12px;
    margin-left: 6px;
    vertical-align: middle;
    font-family: 'Poppins', sans-serif;
    user-select: none;
    display: inline-block;
    line-height: 1;
}

@media screen and (max-width: 480px) {

    .hero h1,
    .sources h1,
    .premium h1,
    .gradient-title {
        font-size: 2.1rem;
    }

    .hero p,
    .sources p,
    .premium p,
    .features p {
        font-size: 1rem;
    }

    .invite-btn {
        padding: 14px 28px;
        font-size: 16px;
    }

    .card {
        width: 100%;
        padding: 1.5rem;
    }

    .card ul li {
        font-size: 0.95rem;
    }

    .buy-btn {
        padding: 12px 0;
        font-size: 1rem;
        min-width: 160px;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .footer {
        font-size: 13px;
        padding: 30px 20px;
    }

    .buttons-container {
        flex-direction: column;
        gap: 1rem;
    }

    .invite-info h1 {
        font-size: 2.2rem;
    }

    .invite-info p {
        font-size: 1rem;
    }
}