* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('unnamed (5).webp') center/cover no-repeat fixed;
    color: #ffeb3b;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

header {
    background: rgba(0, 0, 0, 0.95);
    color: #ffeb3b;
    padding: 16px 0;
}


/* Navbar styles */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffeb3b;
}

nav a {
    color: #ffeb3b;
    text-decoration: none;
    margin-left: 25px;
    font-size: 1rem;
    transition: color 0.2s;
}

nav a:hover {
    color: #ffd600;
}


/* Pricing section */

.pricing-section {
    padding: 58px 0 38px 0;
    min-height: 100vh;
    background: transparent;
}

.pricing-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 36px;
    color: #ffd600;
    letter-spacing: 1.2px;
}

.pricing-table {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    background: rgba(30, 30, 30, 0.92);
    border-radius: 13px;
    box-shadow: 0 2px 12px rgba(255, 235, 59, 0.13);
    padding: 40px 26px 28px 26px;
    text-align: center;
    min-width: 220px;
    flex: 1 1 260px;
    position: relative;
    margin: 8px 0;
    cursor: pointer;
    transition: transform 0.28s cubic-bezier(0.68, -0.55, 0.27, 1.55), box-shadow 0.2s;
    opacity: 0.96;
    animation-duration: 1s;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.045) rotate(-2deg);
    box-shadow: 0 10px 30px rgba(255, 235, 59, 0.23), 0 4px 16px rgba(0, 0, 0, 0.23);
    z-index: 2;
}

.pricing-card h2 {
    color: #ffd600;
    font-size: 1.35rem;
    margin-bottom: 13px;
}

.price {
    color: #ffeb3b;
    font-size: 2.1rem;
    margin-bottom: 19px;
}

.price span {
    font-size: 2.32rem;
    font-weight: bold;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 23px;
}

.pricing-card ul li {
    margin-bottom: 11px;
    font-size: 1.03rem;
    color: #ffeb3b;
}

.btn-join {
    display: inline-block;
    background: #ffd600;
    color: #181818;
    padding: 12px 32px;
    border: none;
    border-radius: 30px;
    font-size: 1.07rem;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    margin-top: 10px;
}

.btn-join:hover {
    background: #ffeb3b;
    color: #000;
}

.popular {
    border: 2.5px solid #ffd600;
    transform: scale(1.035);
    z-index: 2;
}

.popular-badge {
    background: #ffd600;
    color: #181818;
    font-size: .89rem;
    padding: 6px 15px;
    border-radius: 17px;
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    letter-spacing: 1.2px;
}

footer {
    background: rgba(0, 0, 0, 0.95);
    color: #ffeb3b;
    text-align: center;
    padding: 16px 0;
    margin-top: 35px;
    font-size: .9rem;
}

@media (max-width: 800px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    nav {
        margin-top: 10px;
        width: 100%;
    }
    nav a {
        display: inline-block;
        margin: 10px 10px 0 0;
    }
    .pricing-table {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .pricing-card {
        min-width: 200px;
        max-width: 98vw;
    }
    .pricing-title {
        font-size: 1.4rem;
    }
}


/* Animate.css delays for each card */

.animate__delay-1s {
    animation-delay: 0.5s;
}

.animate__delay-1-5s {
    animation-delay: 0.8s;
}

.animate__delay-2s {
    animation-delay: 1.1s;
}