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

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background-color: #0a0a0a;
    color: white;
    overflow-x: hidden;
}

.cursor-glow {
    position: fixed;
    width: 250px;
    height: 250px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(201, 162, 39, 0.18) 0%,
        rgba(201, 162, 39, 0.10) 40%,
        transparent 70%
    );
    filter: blur(10px);
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.navbar {
    position: fixed;
    top: 18px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    width: 90%;
    max-width: 1150px;
    height: 64px;
    padding: 0 28px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(192, 192, 192, 0.35);
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 17px;
    height: 100%;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
    align-items: center;
    height: 100%;
}

.nav-links a {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #dddddd;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 100%;
    height: 2px;
    background-color: #ffd84d;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.discord-btn {
    height: 38px;
    padding: 0 22px;
    border-radius: 7px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    background: #c9a227;
    color: black;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.discord-btn:hover {
    background: #ffd84d;
    box-shadow: 0 0 12px rgba(255, 216, 77, 0.5);
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-menu {
    position: absolute;
    top: 75px;
    left: -80px;
    transform: none;

    width: 260px;
    padding: 14px 0;
    border-radius: 16px;

    background: #0a0a0a;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(192, 192, 192, 0.25);

    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;

    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 999;
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu li a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    text-decoration: none;
    gap: 3px;
}

.dropdown-menu a::after {
    display: none !important;
}

.drop-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    transition: 0.2s ease;
}

.drop-desc {
    font-size: 12px;
    color: #aaaaaa;
    font-weight: 400;
}

.dropdown-menu li:hover {
    background: rgba(255, 216, 77, 0.08);
}

.dropdown-menu li:hover .drop-title {
    color: #ffd84d;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.menu-toggle {
    display: none;
    font-size: 20px;
    cursor: pointer;
    color: white;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: #0a0a0a;
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255,255,255,0.08);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: right 0.35s ease;
    z-index: 2000;
}

.mobile-menu.active {
    right: 0;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
}

.mobile-logo img {
    width: 36px;
    height: 36px;
}

.close-menu {
    font-size: 20px;
    cursor: pointer;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-links a {
    text-decoration: none;
    color: #ddd;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 12px;
    transition: 0.25s ease;
}

.mobile-links a strong {
    font-size: 15px;
    font-weight: 600;
}

.mobile-links a p {
    font-size: 12px;
    color: #888;
}

.mobile-links a:hover {
    background: rgba(255, 216, 77, 0.08);
}

.mobile-discord {
    margin-top: auto;
    background: #c9a227;
    color: black;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.mobile-discord:hover {
    box-shadow: 0 0 12px rgba(255, 216, 77, 0.5);
}

@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .discord-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

}

/* Hero Section New Styles */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.15) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin-top: 40px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 30px;
    color: #ffd84d;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-badge i {
    margin-right: 8px;
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero h1 span {
    color: #ffd84d;
    position: relative;
}

.hero h1 span::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 6px;
    background: #ffd84d;
    border-radius: 10px;
}

.hero p {
    font-size: 18px;
    color: #b5b5b5;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero p strong {
    color: #ffd84d;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #c9a227;
    color: #000;
    padding: 16px 34px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ffd84d;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 162, 39, 0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.04);
    color: #ffffff;
    padding: 16px 34px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(201, 162, 39, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,216,77,0.1);
    border-color: #ffd84d;
    color: #ffd84d;
    transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, transparent, rgba(201, 162, 39, 0.05));
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    background: rgba(201, 162, 39, 0.05); 
    border: 1px solid rgba(201, 162, 39, 0.2); 
    border-radius: 12px; 
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background-color: #ffd84d; 
    transition: width 0.3s ease;
}

.stat-item:hover::after {
    width: 100%;
}

.stat-item:hover {
    background: rgba(201, 162, 39, 0.1);
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: #ffd84d;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #888;
    letter-spacing: 1px;
}

/* Features Section */
.features-section {
    padding: 100px 20px;
    background: #0a0a0a;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.features-header h2 span {
    color: #ffd84d;
}

.features-header p {
    font-size: 18px;
    color: #b5b5b5;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    background: #121212;
    border: 1px solid #222;
    border-radius: 12px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: none; 
    background: #1a1a1a;
    border-color: #ffd84d;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #ffd84d;
}

.feature-card:hover .feature-icon i {
    color: #0a0a0a; 
}

.feature-icon i {
    font-size: 30px;
    color: #ffd84d;
    transition: color 0.3s ease;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

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

/* Premium Section */
.premium-section {
    padding: 100px 20px;
}

.premium-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, rgba(201,162,39,0.1) 0%, transparent 100%);
    border-radius: 40px;
    padding: 60px;
}

.premium-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(201, 162, 39, 0.2);
    border-radius: 20px;
    color: #ffd84d;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.premium-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.premium-content h2 span {
    color: #ffd84d;
}

.premium-content p {
    font-size: 18px;
    color: #b5b5b5;
    margin-bottom: 30px;
}

.premium-features {
    list-style: none;
    margin-bottom: 40px;
}

.premium-features li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #ddd;
}

.premium-features i {
    color: #ffd84d;
    margin-right: 10px;
}

.premium-btn {
    display: inline-block;
    padding: 16px 34px;
    background: #c9a227;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.premium-btn:hover {
    background: #ffd84d;
    transform: translateY(-2px);
}

.premium-image {
    text-align: center;
}

.premium-image img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, transparent, rgba(201,162,39,0.1));
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-container h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-container p {
    font-size: 18px;
    color: #b5b5b5;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: #c9a227;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #ffd84d;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(201, 162, 39, 0.3);
}

/* Original Plan Styles */
.plans-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.plan-card {
    width: 450px;
    height: 500px;
    padding: 40px;
    border-radius: 10px;
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.02)
    );
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
    transition: 0.35s ease;
}

.plan-card:hover {
    border-color: rgba(255,255,255,0.18);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
}


.card-logo img {
    width: 60px;
    border-radius: 10px;
}

.plan-badge {
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
}

.pro-badge {
    background: rgba(255,80,80,0.15);
    color: #ff4d4d;
}

.ultimate-badge {
    background: rgba(255,200,0,0.15);
    color: #ffcc00;
}

.plan-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
}

.pro-title {
    color: #ff4d4d;
}

.ultimate-title {
    color: #ffcc00;
}

.plan-desc {
    color: #aaaaaa;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.plan-features {
    margin-top: 20px;
    list-style: none;
    margin-bottom: 60px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 14px;
    font-size: 15px;
}

.plan-features i {
    color: #00ff66;
    margin-right: 10px;
}

.plan-btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 15px;
}

.pro-btn {
    background: #b84545;
    color: white;
}

.pro-btn:hover {
    background: #d95353;
}

.ultimate-btn {
    background: #c9a227;
    color: black;
}

.ultimate-btn:hover {
    background: #ffd84d;
}

/* Original Hero Heading */
.hero-heading {
    text-align: center;
    margin-top: 250px;
    margin-bottom: 80px;
}

.hero-heading h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-heading h1 span {
    color: #ffd84d;
    font-style: italic;
    font-weight: 800;
}

.hero-heading p {
    font-size: 16px;
    margin-bottom: 150px;
    color: #9a9a9a;
    line-height: 1.6;
}

/* Footer */
.footer {
    margin-top: 10px;
    padding: 80px 0 40px;
}

.footer-container {
    width: 100%;
    padding: 10px 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-left {
    max-width: 220px;
    margin-left: 100px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-box img {
    width: 40px;
}

.footer-desc {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 30px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: rgba(255,216,77,0.15);
    color: #ffd84d;
}

.footer-links {
    display: flex;
    gap: 200px;
    margin-right: 100px;
}

.footer-links h4 {
    font-size: 13px;
    margin-bottom: 14px;
    color: #888;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffd84d;
}

.footer-bottom {
    width: 100%;
    padding: 25px 80px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #777;
    flex-wrap: wrap;
}

.footer-bottom span {
    color: #ffd84d;
}

/* Original Media Queries */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 40px;
    }

    .footer-links {
        margin-left: 0;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        padding: 25px 40px 0;
    }
}

@media (max-width: 900px) {

    .hero-heading {
        margin-top: 150px;
        padding: 0 20px;
    }

    .hero-heading h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-heading p {
        font-size: 14px;
        margin-bottom: 70px;
    }

    .plans-container {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        gap: 30px;
    }

    .plan-card {
        width: 100%;
        max-width: 420px;
        height: auto;
        margin-bottom: 20px;
    }

}

@media (max-width: 900px) {

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 25px;
    }

    .footer-left {
        margin-left: 0;
        max-width: 100%;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-desc {
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links {
        margin: 40px 0 0 0;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .footer-links div {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 25px;
    }
}

@media (max-width: 900px) {

    .footer-logo-box {
        display: none;
    }

}

/* Partner Page Styles */
    /* Partner Hero Section - Center Fix */
.partner-hero {
    text-align: center;
    margin-top: 250px;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.partner-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: center;
}

.hero-content h1 span {
    color: #ffd84d;
    font-style: italic;
    font-weight: 800;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 150px;
    color: #9a9a9a;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.partner-section {
    display: flex;
    justify-content: center;
    padding-bottom: 120px;
}

.partner-box {
    width: 550px;
    height: 780px;
    padding: 40px;
    border-radius: 16px;
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02)
    );
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.35s ease;
}

.partner-box:hover {
    border-color: rgba(255,255,255,0.25);
}

.partner-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.partner-top img {
    width: 70px;
    border-radius: 12px;
}

.partner-badge {
    background: rgba(255,216,77,0.15);
    color: #ffd84d;
    padding: 8px 12px;
    align-self: flex-start;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
}

.partner-box h2 {
    font-size: 30px;
    margin-bottom: 50px;
    margin-top: 40px;
    color: #ffd84d;
}

.partner-text {
    color: #aaaaaa;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 50px;
}

.partner-features {
    list-style: none;
    margin-bottom: 80px;
}

.partner-features li {
    margin-bottom: 14px;
    font-size: 16px;
}

.partner-features i {
    color: #00ff66;
    margin-right: 10px;
}

.partner-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.partner-btn {
    flex: 1;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.partner-btn.yellow {
    background: #c9a227;
    color: black;
}

.partner-btn.yellow:hover {
    background: #ffd84d;
}

.partner-btn.dark {
    background: #2b2b2b;
    color: white;
}

.partner-btn.dark:hover {
    background: #3a3a3a;
}

.partner-btn.outline {
    border: 1px solid #ffd84d;
    color: #ffd84d;
}

.partner-btn.outline:hover {
    color: white;
    border-color: white;
}

@media (max-width: 1024px) {

    .partner-hero {
        margin-top: 180px;
        padding: 0 25px;
    }

    .partner-hero-content h1 {
        font-size: 48px;
    }

    .partner-hero-content p {
        font-size: 16px;
    }

    .partner-box {
        width: 90%;
        padding: 45px;
    }

}

@media (max-width: 768px) {

    .partner-hero {
        margin-top: 150px;
        margin-bottom: 80px;
        padding: 0 20px;
    }

    .partner-hero-content h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .partner-hero-content p {
        font-size: 15px;
    }

    .partner-section {
        padding: 0 20px 80px;
    }

    .partner-box {
        width: 100%;
        padding: 35px 25px;
    }

    .partner-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .partner-top img {
        width: 55px;
    }

    .partner-box h2 {
        font-size: 24px;
    }

    .partner-text {
        font-size: 14px;
    }

    .partner-features li {
        font-size: 14px;
    }

    .partner-buttons {
        flex-direction: column;
    }

}

@media (max-width: 480px) {

    .partner-hero-content h1 {
        font-size: 28px;
    }

    .partner-hero-content p {
        font-size: 14px;
    }

    .partner-box {
        padding: 25px 20px;
    }

}

/* Terms Page Styles */
.terms-wrapper {
    margin-top: 180px;
    padding: 60px 0 120px;
}

.terms-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.sidebar-divider {
    border: none;
    height: 1px;
    margin: 30px 0;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );
}

.terms-sidebar {
    width: 320px;
    position: sticky;
    top: 140px;
}

.terms-sidebar h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
}

.terms-sidebar p {
    color: #9a9a9a;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.terms-support h4 {
    font-size: 12px;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 10px;
}

.terms-support p {
    font-size: 14px;
    margin-bottom: 15px;
}

.support-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    background: #ffffff;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.support-btn:hover {
    background: #ffd84d;
}

.terms-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.terms-card {
    position: relative;
    padding: 30px 30px 30px 70px;
    border-radius: 14px;
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02)
    );
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.3s ease;
}

.terms-card:hover {
    border-color: rgba(255,255,255,0.2);
}

.card-number {
    position: absolute;
    left: 20px;
    top: 30px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
}

.terms-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.terms-card p,
.terms-card li {
    font-size: 14px;
    color: #b5b5b5;
    line-height: 1.6;
}

.terms-card ul {
    padding-left: 18px;
    margin-top: 10px;
}

.terms-card li {
    margin-bottom: 8px;
}

@media (max-width: 1000px) {

    .terms-container {
        flex-direction: column;
        gap: 50px;
    }

    .terms-sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }

}

@media (max-width: 600px) {

    .terms-wrapper {
        margin-top: 140px;
        padding: 40px 20px 80px;
    }

    .terms-sidebar h1 {
        font-size: 28px;
    }

    .terms-card {
        padding: 25px 20px 25px 60px;
    }

    .card-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

}

/* Support Page Styles */
.support-hero {
    text-align: center;
    margin-top: 250px;
    margin-bottom: 100px;
}

.support-hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.support-hero h1 span {
    color: #ffd84d;
    font-style: italic;
}

.support-hero p {
    font-size: 16px;
    color: #9a9a9a;
    line-height: 1.6;
}

.support-section {
    display: flex;
    justify-content: center;
    padding-bottom: 120px;
}

.support-card {
    width: 520px;
    height: 620px;
    padding: 50px;
    border-radius: 16px;
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0.02)
    );
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s ease;
}

.support-card:hover {
    border-color: rgba(255,255,255,0.25);
}

.support-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    align-items: flex-start;
}

.support-top img {
    width: 60px;
    border-radius: 10px;
}

.support-badge {
    background: rgba(255,216,77,0.15);
    color: #ffd84d;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
}

.support-card h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #ffd84d;
}

.support-text {
    font-size: 15px;
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 35px;
}

.support-features {
    list-style: none;
    margin-bottom: 40px;
}

.support-features li {
    margin-bottom: 20px;
    font-size: 15px;
}

.support-features i {
    color: #00ff66;
    margin-right: 10px;
    margin-bottom: 10px;
}

.support-btn-main {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    background: #c9a227;
    color: black;
    transition: 0.3s ease;
}

.support-btn-main:hover {
    background: #ffd84d;
}

@media (max-width: 1024px) {

    .support-hero {
        margin-top: 180px;
        padding: 0 25px;
    }

    .support-hero h1 {
        font-size: 46px;
    }

    .support-card {
        width: 90%;
    }

}

@media (max-width: 768px) {

    .support-hero {
        margin-top: 150px;
        margin-bottom: 70px;
        padding: 0 20px;
    }

    .support-hero h1 {
        font-size: 34px;
    }

    .support-section {
        padding: 0 20px 80px;
    }

    .support-card {
        width: 100%;
        padding: 35px 25px;
    }

}

@media (max-width: 480px) {

    .support-hero h1 {
        font-size: 26px;
    }

}

/* New Media Queries for Hero */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 56px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .premium-features {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }

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

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

    .hero-badge {
        font-size: 12px;
    }

    .stats-section {
        padding: 60px 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
    }

    .features-header h2 {
        font-size: 36px;
    }

    .features-header p {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .premium-container {
        padding: 40px 20px;
    }

    .premium-content h2 {
        font-size: 32px;
    }

    .cta-container h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero h1 span::after {
        bottom: -5px;
        height: 4px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 14px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 32px;
    }
}