* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.container5h8w {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav7m2p {
    background: rgba(20, 20, 20, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.nav7m2p .container5h8w {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo3n6t {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.logo3n6t img {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 5px;
    border-radius: 8px;
}

.mobile-toggle6r9s {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}

.nav-menu4d5p {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu4d5p a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu4d5p a:hover {
    color: #667eea;
}

.hero8t3m {
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #333;
}

.carousel-container9x4p {
    position: relative;
    width: 100%;
    height: 600px;
}

.carousel-slides7k2m {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide4h8n {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-slide4h8n.active {
    opacity: 1;
}

.carousel-overlay3j6w {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(20, 20, 20, 0.75));
}

.carousel-slide4h8n .container5h8w {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content2k7n {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.carousel-btn5m2k {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn5m2k:hover {
    background: rgba(102, 126, 234, 0.8);
    border-color: rgba(102, 126, 234, 1);
}

.carousel-prev8n3p {
    left: 20px;
}

.carousel-next7w4r {
    right: 20px;
}

.carousel-dots6h9m {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot2p8k {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot2p8k.active {
    background: #667eea;
    border-color: #667eea;
    transform: scale(1.2);
}

.carousel-dot2p8k:hover {
    background: rgba(102, 126, 234, 0.8);
}

.hero-icon9p4s {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.hero8t3m h1,
.hero8t3m .hero-title {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero8t3m h1 i {
    margin-right: 15px;
}

.subtitle6f2w {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.tags5j8r {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
}

.tag4m3n {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tag4m3n i {
    margin-right: 6px;
}

.download-section7p5k {
    margin-top: 30px;
}

.download-btn9h2q {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    font-weight: 600;
}

.download-btn9h2q:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.download-btn9h2q i {
    margin-right: 10px;
}

.version-info3w7t {
    margin-top: 15px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.main-content8k5r {
    background: #0a0a0a;
    padding: 60px 0;
}

.about-platform5w9k,
.games-section5k9m,
.reviews-section2k7m,
.guides-section3k8m,
.news-section8p4k,
.links-section6k3m {
    margin-bottom: 70px;
}

.about-platform5w9k h2,
.games-section5k9m h2,
.reviews-section2k7m h2,
.guides-section3k8m h2,
.news-section8p4k h2,
.links-section6k3m h2 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.about-platform5w9k h2 i,
.games-section5k9m h2 i,
.reviews-section2k7m h2 i,
.guides-section3k8m h2 i,
.news-section8p4k h2 i,
.links-section6k3m h2 i {
    margin-right: 12px;
}

.about-image7k2p {
    text-align: center;
    margin: 30px 0 50px;
}

.about-image7k2p img {
    width: 1155px;
    height: auto;
}

.about-description8w5n {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.desc-card4m9p {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(26, 26, 26, 0.6));
    border-radius: 20px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.desc-card4m9p::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.desc-card4m9p:hover::before {
    left: 100%;
}

.desc-card4m9p:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.desc-icon7h2k {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.desc-content3p6n h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 12px;
}

.desc-content3p6n p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 1rem;
}

.platform-features2n8w {
    margin-top: 60px;
    padding: 50px 40px;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 25px;
    border: 2px solid #333;
}

.features-header9k3m {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.features-header9k3m i {
    font-size: 3rem;
    color: #667eea;
    display: block;
    margin-bottom: 15px;
}

.features-header9k3m h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
}

.header-line5w2p {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    margin: 0 auto;
}

.features-showcase7n4k {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-box2m8p {
    background: linear-gradient(135deg, #1a1a1a, #252525);
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid #333;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-box2m8p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-box2m8p:hover::after {
    transform: scaleX(1);
}

.feature-box2m8p:hover {
    transform: translateY(-8px);
    border-color: #667eea;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.25);
}

.feature-number6h3n {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(102, 126, 234, 0.15);
}

.feature-box2m8p i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.feature-box2m8p:hover i {
    transform: scale(1.1);
    color: #764ba2;
}

.feature-box2m8p h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
}

.feature-box2m8p p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.categories-grid7w4p {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.category-item8r2k {
    background: #1a1a1a;
    border: 2px solid #333;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-item8r2k:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.category-item8r2k i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
}

.category-item8r2k h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 12px;
}

.category-item8r2k p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.review-summary9h3k {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.rating-overall5p8w {
    text-align: center;
    min-width: 200px;
}

.rating-score4m6n {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.rating-stars2k9p {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffd700;
}

.rating-text7w2q {
    font-size: 0.95rem;
    opacity: 0.9;
}

.rating-breakdown6k4m {
    flex: 1;
}

.rating-row8p3n {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.rating-row8p3n span:first-child {
    min-width: 80px;
    font-size: 0.95rem;
}

.rating-row8p3n span:last-child {
    min-width: 40px;
    text-align: right;
    font-weight: 600;
}

.progress-bar9h5k {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill7m2w {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #ffd700);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.reviews-grid4n8p {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card7k2m {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    border: 1px solid #333;
    border-left: 4px solid #667eea;
}

.review-header5w9p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info3h6k {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-info3h6k i {
    font-size: 1.8rem;
    color: #667eea;
}

.reviewer-info3h6k strong {
    color: #fff;
}

.review-stars4m7n {
    color: #ffd700;
}

.review-card7k2m p {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 15px;
}

.review-date6p3w {
    font-size: 0.85rem;
    color: #666;
}

.guides-showcase4w9n {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.guide-main-card7h3k {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(26, 26, 26, 0.9));
    padding: 45px;
    border-radius: 25px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.guide-main-card7h3k::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(102, 126, 234, 0.1), transparent 60%);
    pointer-events: none;
}

.guide-main-card7h3k:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.guide-label2m8p {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    z-index: 2;
}

.guide-label2m8p i {
    margin-right: 6px;
}

.guide-number5k9w {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(102, 126, 234, 0.1);
    line-height: 1;
    z-index: 1;
}

.guide-icon-wrap3n6p {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 2;
}

.guide-main-card7h3k h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.guide-meta4p7n {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.guide-meta4p7n span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.guide-meta4p7n i {
    color: #667eea;
}

.guide-main-card7h3k p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.guide-button6w2k {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 2;
}

.guide-button6w2k:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.guide-side-list8p5m {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-compact-card2n7k {
    background: #1a1a1a;
    border-radius: 18px;
    border: 1px solid #333;
    padding: 25px;
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 20px;
    align-items: start;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guide-compact-card2n7k::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #667eea, #764ba2);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.guide-compact-card2n7k:hover::before {
    transform: scaleY(1);
}

.guide-compact-card2n7k:hover {
    transform: translateX(8px);
    border-color: #667eea;
    background: #252525;
}

.compact-number9h4w {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(102, 126, 234, 0.2);
    line-height: 1;
}

.compact-icon3k6p {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #667eea;
    flex-shrink: 0;
}

.compact-content5m2w h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.compact-content5m2w p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.compact-footer7w3n {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.compact-tag4h8k {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(102, 126, 234, 0.15);
    color: #667eea;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.compact-link6k2m {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.compact-link6k2m:hover {
    color: #764ba2;
    gap: 8px;
}

.news-layout3w8k {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.news-featured2m7p {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(26, 26, 26, 0.8));
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.news-featured2m7p::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.news-featured2m7p:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.featured-badge4h9n {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    z-index: 2;
}

.featured-badge4h9n i {
    margin-right: 6px;
}

.featured-header6k2w {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.featured-date5p3m,
.featured-category7w4n {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.featured-date5p3m i,
.featured-category7w4n i {
    color: #667eea;
}

.news-featured2m7p h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.news-featured2m7p p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.featured-tags8m5k {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.tag-item9h2p {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.tag-item9h2p i {
    margin-right: 5px;
}

.featured-link4n6w {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    position: relative;
    z-index: 1;
}

.featured-link4n6w:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

.news-list6h3m {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card2k8p {
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid #333;
    padding: 20px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-card2k8p::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #667eea, #764ba2);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.news-card2k8p:hover::after {
    transform: scaleY(1);
}

.news-card2k8p:hover {
    transform: translateX(5px);
    border-color: #667eea;
    background: #252525;
}

.news-card-icon5w2m {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #667eea;
}

.news-card-content7p4n {
    flex: 1;
}

.news-card-meta3h9k {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.news-card-date4m2w {
    font-size: 0.85rem;
    color: #b0b0b0;
}

.news-card-tag6p5n {
    font-size: 0.8rem;
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 2px 10px;
    border-radius: 10px;
}

.news-card-content7p4n h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-card-content7p4n p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.news-card-link8w3k {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-card-link8w3k:hover {
    color: #764ba2;
    gap: 8px;
}

.footer7k2m {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-wave3h9k {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    line-height: 0;
}

.footer-wave3h9k svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.footer-main4w8n {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 40px;
    padding: 50px 0 25px;
}

.footer-brand2k7p {
    text-align: left;
}

.footer-tagline6m9k {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-social8w2n {
    display: flex;
    gap: 10px;
}

.social-btn4k7p {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-btn4k7p:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.footer-nav3p5w {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.footer-column9h2k h4 {
    font-size: 1rem;
    margin-bottom: 18px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
    pointer-events: none;
}

.footer-column9h2k h4 i {
    color: #667eea;
    font-size: 1rem;
}

.footer-column9h2k ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
    position: relative;
    z-index: 1;
}

.footer-column9h2k li {
    margin-bottom: 0;
}

.footer-column9h2k a {
    color: #b0b0b0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

.footer-column9h2k a i {
    font-size: 0.7rem;
    color: #667eea;
    transition: transform 0.3s ease;
}

.footer-column9h2k a:hover {
    color: #667eea;
    padding-left: 5px;
}

.footer-column9h2k a:hover i {
    transform: translateX(3px);
}

.partner-links7m4k a i {
    font-size: 0.8rem;
}

.footer-divider2w9p {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
    margin: 15px 0;
}

.footer-bottom3w9k {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.footer-copyright5h8m p {
    color: #888;
    font-size: 0.85rem;
}

.footer-info6k3n {
    display: flex;
    gap: 20px;
}

.footer-info6k3n span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #b0b0b0;
    font-size: 0.8rem;
}

.footer-info6k3n i {
    color: #667eea;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .mobile-toggle6r9s {
        display: block;
    }

    .nav-menu4d5p {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #141414;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
        border-bottom: 1px solid #333;
    }

    .nav-menu4d5p.active {
        max-height: 400px;
    }

    .carousel-container9x4p {
        height: 500px;
    }

    .carousel-btn5m2k {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .carousel-prev8n3p {
        left: 10px;
    }

    .carousel-next7w4r {
        right: 10px;
    }

    .carousel-dots6h9m {
        bottom: 20px;
        gap: 8px;
    }

    .carousel-dot2p8k {
        width: 10px;
        height: 10px;
    }

    .nav-menu4d5p li {
        border-bottom: 1px solid #333;
    }

    .about-image7k2p img {
        width: 300px;
        max-width: 90%;
    }

    .about-description8w5n {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .desc-card4m9p {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }

    .platform-features2n8w {
        padding: 30px 20px;
    }

    .features-header9k3m i {
        font-size: 2.5rem;
    }

    .features-header9k3m h3 {
        font-size: 1.8rem;
    }

    .features-showcase7n4k {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-box2m8p {
        padding: 25px 20px;
    }

    .news-layout3w8k {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .news-featured2m7p {
        padding: 30px 25px;
    }

    .news-featured2m7p h3 {
        font-size: 1.6rem;
    }

    .news-card2k8p {
        flex-direction: column;
        padding: 20px;
    }

    .news-card-icon5w2m {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .guides-showcase4w9n {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .guide-main-card7h3k {
        padding: 30px 25px;
    }

    .guide-main-card7h3k h3 {
        font-size: 1.5rem;
    }

    .guide-icon-wrap3n6p {
        width: 65px;
        height: 65px;
        font-size: 2rem;
    }

    .guide-compact-card2n7k {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }

    .compact-number9h4w {
        font-size: 2rem;
    }

    .compact-icon3k6p {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .footer-main4w8n {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 40px 0 20px;
    }

    .footer-brand2k7p {
        text-align: center;
    }

    .footer-social8w2n {
        justify-content: center;
    }

    .footer-nav3p5w {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-column9h2k ul {
        grid-template-columns: 1fr;
    }

    .footer-bottom3w9k {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-info6k3n {
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu4d5p a {
        display: block;
        padding: 15px 20px;
        color: #e0e0e0;
    }

    .hero8t3m h1 {
        font-size: 2rem;
    }

    .subtitle6f2w {
        font-size: 1.1rem;
    }

    .download-btn9h2q {
        padding: 15px 35px;
        font-size: 1.1rem;
    }

    .review-summary9h3k {
        flex-direction: column;
        gap: 30px;
    }

    .features-grid3m7k,
    .categories-grid7w4p,
    .reviews-grid4n8p,
    .articles-grid5p7n {
        grid-template-columns: 1fr;
    }

    .footer-content9p4n {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons2n8p {
        justify-content: center;
    }
}

.protocol-news-list,.protocol-detail{max-width:1100px;margin:0 auto;padding:48px 20px}.protocol-news-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:22px}.protocol-news-card{padding:22px;border:1px solid rgba(127,127,127,.25);border-radius:10px;background:rgba(255,255,255,.04);box-sizing:border-box}.protocol-news-card h2,.protocol-news-card h3{margin-top:0}.protocol-news-card time{display:block;opacity:.75;margin:10px 0}.protocol-news-card a{color:inherit}.protocol-detail article{max-width:900px;margin:auto}.protocol-detail-content{line-height:1.9;white-space:pre-wrap}.protocol-back{display:inline-block;margin-top:24px}.managed-download-overlay{position:fixed;inset:0;z-index:10000;background:rgba(0,0,0,.76);display:grid;place-items:center;padding:18px}.managed-download-dialog{width:min(100%,500px);padding:28px;border-radius:12px;background:#1d2230;color:#fff;box-sizing:border-box}.managed-download-dialog footer{display:flex;justify-content:flex-end;gap:12px;margin-top:20px}.managed-download-dialog button{padding:10px 18px;cursor:pointer}
