/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans SC', 'Microsoft YaHei', Arial, sans-serif;
}

body {
    color: #fff;
    line-height: 1.6;
    background-color: #1a1633;
}

a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

ul, li {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-primary {
    background: linear-gradient(45deg, #4776E6, #8E54E9);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #3767d7, #7d43d8);
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

/* 顶部导航 */
header {
    background-color: rgba(26, 22, 51, 0.95);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo img {
    height: 35px;
    margin-right: 10px;
}

.logo a {
    color: #fff;
    display: inline-block;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 35px;
    position: relative;
}

.nav-menu a {
    position: relative;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #8E54E9;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, #4776E6, #8E54E9);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: #8E54E9;
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.login-btn {
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.nav-menu a.login-btn:hover {
    background-color: #8E54E9;
}

.nav-menu a.login-btn::after {
    display: none;
}

.user-actions {
    display: flex;
    align-items: center;
}

.user-actions a {
    padding: 8px 20px;
    background-color: #4776E6;
    border-radius: 5px;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
}

.user-actions a:hover {
    background-color: #8E54E9;
}

/* 主横幅 */
.hero {
    background: url('../images/recording-studio.jpg') center center no-repeat;
    background-size: cover;
    color: white;
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 22, 51, 0.85), rgba(26, 22, 51, 0.7)); /* 渐变遮罩提升视觉效果 */
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 100%;
    padding: 0 20px;
    width: auto;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-title {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.hero-features {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-feature {
    margin: 0 15px;
    position: relative;
    padding: 0 15px;
}

.hero-feature:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -15px;
    top: 0;
    color: rgba(255, 255, 255, 0.4);
}

.hero-action {
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
    text-align: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 用户分类卡片 */
.user-cards {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    text-align: left;
}

.user-card {
    flex: 1;
    background-color: rgba(79, 69, 145, 0.6);
    border-radius: 12px;
    padding: 35px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(138, 79, 235, 0.3);
    position: relative;
    overflow: hidden;
    max-width: none;
}

.user-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #4776E6, #8E54E9);
}

.user-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(142, 84, 233, 0.5);
}

.user-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
    position: relative;
    display: block;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.user-card h3 i {
    margin-right: 10px;
    margin-left: 0;
    color: #8E54E9;
    font-size: 26px;
}

.user-card-content {
    padding-top: 5px;
    text-align: left;
}

.user-card-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
}

.user-card-content p strong {
    color: #fff;
    font-weight: 600;
}

/* 服务特点 */
.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.feature {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
}

.feature:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1);
}

/* 用户分类 */
.user-types {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.user-types::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #2575fc, #6a11cb);
}

.user-types-grid {
    display: flex;
    gap: 40px;
}

.user-type {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.user-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, #2575fc, #6a11cb);
    z-index: -1;
}

.user-type:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.user-type h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #222;
}

.user-type p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

/* 艺术家展示 */
.artists {
    padding: 100px 0;
    background-color: white;
    position: relative;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 35px;
}

.artist {
    text-align: center;
    transition: all 0.3s ease;
}

.artist:hover {
    transform: translateY(-10px);
}

.artist-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    background-color: #f0f0f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.artist-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 117, 252, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist:hover .artist-img::before {
    opacity: 1;
}

.artist-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.artist:hover .artist-img img {
    transform: scale(1.1);
}

.artist h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #222;
}

.artist p {
    color: #666;
    margin-bottom: 5px;
}

.artist .song {
    color: #6a11cb;
    font-size: 15px;
    font-weight: 500;
}

/* 底部 */
footer {
    background-color: #1a1d21;
    color: white;
    padding: 40px 0 40px;
    position: relative;
}



.footer-bottom {
    text-align: center;
    color: #aaa;
}

/* 菜单切换按钮 */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #6a11cb;
}

/* 顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #2575fc, #6a11cb);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .user-types-grid {
        grid-template-columns: 1fr;
    }
    
    .artists-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: rgba(26, 22, 51, 0.95);
        flex-direction: column;
        padding: 20px 0;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
        text-align: center;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a.login-btn {
        margin: 10px auto;
        display: inline-block;
    }
    
    .feature {
        width: 100%;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .user-cards {
        flex-direction: column;
        gap: 20px;
    }
}

/* 服务流程 */
.process {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

.process .container {
    position: relative;
    z-index: 2;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-item {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.process-number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 64px;
    font-weight: 700;
    color: rgba(106, 17, 203, 0.1);
    line-height: 1;
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(45deg, #2575fc, #6a11cb);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.2);
}

.process-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.process-item p {
    color: #666;
    line-height: 1.6;
}

/* 全球发行平台 */
.global-offering {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.global-offering::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #1a1633;
    z-index: 1;
}

.global-offering::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #f8f9fa;
    z-index: 1;
}

.sound-wave {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 300px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.global-offering-title {
    position: relative;
    margin-bottom: 60px;
}

.global-offering-title h2 {
    color: #333;
    font-size: 42px;
    margin-bottom: 15px;
}

.global-offering-title .en-title {
    color: #999;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.global-offering-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #4776E6, #8E54E9);
    margin: 20px auto 0;
}

.global-offering-desc {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.platform-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.platform-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.platform-item {
    width: 130px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    padding: 10px;
}

.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.platform-item img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}

.platform-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 0;
}

.global-offering .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .platform-item {
        width: 100px;
        height: 50px;
    }
    
    .platform-row {
        gap: 20px;
    }
    
    .global-offering-desc {
        padding: 0 20px;
    }
}

/* 全球发行平台图片 */
.platform-image {
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.platform-image img {
    max-width: 1600px;
    width: 92%;
    height: auto;
    border-radius: 0;
    transition: none;
    display: inline-block;
    margin-top: 20px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .platform-image {
        margin: 0 10px 30px;
    }
    
    .platform-image img {
        width: 98%;
    }
}

/* 音乐服务优势 */
.music-services {
    background-color: #111111;
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.music-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 22, 51, 0.95), rgba(66, 22, 102, 0.95));
    background-size: cover;
    opacity: 1;
    z-index: 0;
}

.music-services::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(142, 84, 233, 0.2), transparent 70%);
    z-index: 0;
    border-radius: 50%;
}

.service-intro {
    text-align: left;
    position: relative;
    z-index: 1;
    margin-bottom: 70px;
    max-width: 600px;
}

.start-release {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.2;
}

.service-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.release-action {
    margin-top: 35px;
}

.btn-gradient {
    background: linear-gradient(45deg, #e83e8c, #7b4397);
    border: none;
    color: white;
    transition: all 0.3s ease;
    padding: 14px 35px;
    position: relative;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(232, 62, 140, 0.4);
    background: linear-gradient(45deg, #d81b7a, #6a3384);
}

.btn-gradient i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-gradient:hover i {
    transform: translateX(5px);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-item {
    background-color: rgba(30, 26, 55, 0.7);
    border-radius: 12px;
    padding: 35px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, #e83e8c, transparent);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background-color: rgba(42, 37, 80, 0.8);
    border-color: rgba(232, 62, 140, 0.3);
}

.service-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
}

.service-item h3 i {
    margin-right: 10px;
    color: #e83e8c;
    font-size: 18px;
    opacity: 0.9;
}

.service-item:hover h3 i {
    color: #ffffff;
    transform: scale(1.1);
}

.service-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-title {
        font-size: 28px;
    }
}

.platform-logo {
    height: 60px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-logo img {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.platform-item-card:hover .platform-logo img {
    transform: scale(1.1);
}

/* 合作平台列表样式 */
.partner-platforms {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1633, #4a276c);
    position: relative;
    overflow: hidden;
}

.partner-platforms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 20px 20px;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #4776E6, #8E54E9);
    margin: 20px auto;
    border-radius: 3px;
}

.section-header h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
}

.section-header h2 .highlight {
    background: linear-gradient(45deg, #4776E6, #8E54E9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
}

.platform-table {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    max-width: 1100px;
}

.platform-glow-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(142, 84, 233, 0.3), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.platform-glow-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(71, 118, 230, 0.3), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.platform-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.platform-table td {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.platform-table td::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(71, 118, 230, 0.2), rgba(142, 84, 233, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.platform-table td:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.platform-table td:hover::before {
    opacity: 1;
}

.platform-table tr:hover td {
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .platform-table td {
        padding: 12px 10px;
        font-size: 13px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
} 