    /* Premium Hero Section */
    .hero-premium {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0f 100%);
    }

    .hero-bg-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(255, 0, 51, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 0, 51, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

    .hero-content {
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
        padding: 100px 20px 60px;
        position: relative;
        z-index: 1;
    }

    .hero-label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: var(--accent-color);
        margin-bottom: 30px;
        font-weight: 600;
    }

    .hero-title {
        margin-bottom: 30px;
    }

    .hero-name {
        display: block;
        font-size: clamp(4rem, 8vw, 7rem);
        font-weight: 900;
        line-height: 0.9;
        background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        display: block;
        font-size: clamp(1.2rem, 3vw, 2rem);
        font-weight: 300;
        color: rgba(255, 255, 255, 0.7);
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 1.1rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.6);
        max-width: 700px;
        margin: 0 auto 50px;
    }

    .hero-actions {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-hero {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 18px 36px;
        font-size: 0.95rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn-hero-primary {
        background: var(--accent-color);
        color: #fff;
    }

    .btn-hero-primary:hover {
        background: var(--accent-hover);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(255, 0, 51, 0.3);
    }

    .btn-hero-outline {
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.2);
        color: #fff;
    }

    .btn-hero-outline:hover {
        border-color: var(--accent-color);
        background: rgba(255, 0, 51, 0.1);
        transform: translateY(-3px);
    }

    .hero-scroll {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        animation: bounce 2s infinite;
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translateX(-50%) translateY(0);
        }

        50% {
            transform: translateX(-50%) translateY(-10px);
        }
    }

    /* Premium Sections */
    .section-premium {
        padding: 120px 0;
        position: relative;
    }

    .section-dark {
        background: #0a0a0a;
    }

    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 60px;
        gap: 40px;
        flex-wrap: wrap;
    }

    .section-header-center {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-label {
        display: block;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--accent-color);
        margin-bottom: 15px;
        font-weight: 600;
    }

    .section-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 900;
        margin-bottom: 10px;
        line-height: 1.1;
    }

    .section-desc {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.5);
    }

    /* Premium Cards */
    .premium-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 40px;
        height: 100%;
        border-radius:21px;
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease;
    }

    .premium-card:hover {
        border-color: var(--accent-color);
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .card-bg-text {
        position: absolute;
        top: -20px;
        right: -20px;
        font-size: 10rem;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.005);
        line-height: 1;
        pointer-events: none;
    }

    .card-content {
        position: relative;
        z-index: 1;
    }

    .card-title {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .card-desc {
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .card-tags {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .tag {
        font-size: 0.75rem;
        padding: 4px 12px;
        border-radius:7px;
        background: rgba(255, 0, 51, 0.1);
        border: 1px solid rgba(255, 0, 51, 0.3);
        color: var(--accent-color);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .card-footer {
        margin-top: auto;
    }

    .card-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--accent-color);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 1px;
        transition: gap 0.3s ease;
    }

    .card-link:hover {
        gap: 12px;
    }

    /* Swiper Customization */
    .swiper {
        padding: 20px 0 60px;
    }

    .swiper-slide {
        height: auto;
    }

    .swiper-pagination-bullet {
        background: rgba(255, 255, 255, 0.3);
        opacity: 1;
        width: 12px;
        height: 12px;
    }

    .swiper-pagination-bullet-active {
        background: var(--accent-color);
    }

    .swiper-button-prev,
    .swiper-button-next {
        color: var(--accent-color);
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        transition: all 0.3s ease;
    }

    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        background: var(--accent-color);
        color: #fff;
        border-color: var(--accent-color);
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 20px;
    }

    /* Communities Grid */
    .communities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .community-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        padding: 40px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .community-card:hover {
        border-color: var(--accent-color);
        transform: translateY(-5px);
    }

    .community-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 25px;
        background: rgba(255, 0, 51, 0.1);
        border: 2px solid var(--accent-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--accent-color);
    }

    .community-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .community-card p {
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 25px;
        line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .section-header {
            flex-direction: column;
            align-items: flex-start;
        }

        .hero-actions {
            flex-direction: column;
            width: 100%;
        }

        .btn-hero {
            width: 100%;
            justify-content: center;
        }

        .swiper-button-prev,
        .swiper-button-next {
            display: none;
        }
    }