/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 蓝紫粉迷幻配色 */
    --primary-blue: #6366f1;
    --primary-purple: #a855f7;
    --primary-pink: #ec4899;
    --dark-bg: #0a0a1a;
    --darker-bg: #050510;
    --text-light: #ffffff;
    --text-muted: #b8b8d4;
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --gradient-2: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #6366f1 100%);
    --gradient-3: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #6366f1 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--darker-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--darker-bg);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-blue);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-purple);
    top: 50%;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: var(--primary-pink);
    bottom: -300px;
    left: 20%;
    animation-delay: 10s;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: var(--primary-purple);
    top: 70%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
}

.hero-text {
    text-align: left;
}

.hero-image {
    text-align: center;
    position: relative;
}

.banner-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.4);
    transition: transform 0.3s ease;
    animation: floatImage 6s ease-in-out infinite;
    display: block;
}

.banner-image:hover {
    transform: translateY(-10px) scale(1.02);
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: var(--gradient-1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    50% {
        background: var(--gradient-2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

.cta-button {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-1);
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.6);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid;
    border-image: var(--gradient-1) 1;
}

.cta-button.secondary:hover {
    background: var(--gradient-1);
    border-image: none;
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Why Section */
.why-section {
    background: rgba(10, 10, 26, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.feature-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Screenshots Section */
.screenshots-section {
    background: rgba(99, 102, 241, 0.05);
    padding: 100px 0;
}

.screenshot-slider {
    padding: 40px 0 60px;
    position: relative;
    width: 100%;
}

/* 移动端截图部分优化 */
@media (max-width: 767px) {
    .screenshots-section {
        padding: 60px 0;
    }
    
    .screenshots-section .container {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }
    
    .screenshot-slider {
        padding: 30px 0 50px;
        margin: 0;
        width: 100%;
    }
    
    .screenshot-slider .swiper-wrapper {
        margin: 0;
    }
}

.screenshot-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
    transition: transform 0.3s ease;
    background: rgba(168, 85, 247, 0.1);
    border: 2px solid rgba(168, 85, 247, 0.3);
    width: 100%;
    /* 性能优化：使用硬件加速 */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

.screenshot-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(168, 85, 247, 0.5);
}

.screenshot-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    /* 性能优化：图片优化 */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* 使用硬件加速 */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 26, 0.95), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.screenshot-card:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.screenshot-overlay p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Swiper Customization */
.swiper {
    width: 100%;
    padding-bottom: 50px;
    overflow: hidden;
    position: relative;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    /* 性能优化：使用硬件加速 */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* 移除自定义过渡函数，使用浏览器默认的优化函数 */
    /* Swiper 会自己处理过渡 */
}

.swiper-slide {
    width: 100%;
    max-width: 200px;
    height: auto;
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    position: relative;
    /* 性能优化：使用硬件加速 */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* 确保幻灯片有正确的层级和显示 */
    opacity: 1;
    visibility: visible;
}

/* 移动端优化 - 消除空白 */
@media (max-width: 767px) {
    .swiper-slide {
        max-width: 100%;
        width: 100% !important;
    }
    
    .screenshot-card {
        width: 100%;
        margin: 0;
    }
    
    .swiper {
        padding-left: 0;
        padding-right: 0;
    }
    
    .swiper-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
}

/* 小屏幕设备进一步优化 */
@media (max-width: 480px) {
    .swiper-slide {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .screenshot-card img {
        width: 80%;
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }
    
    .banner-image {
        max-width: 80%;
        width: 80%;
        margin: 0 auto;
        display: block;
    }
}

.swiper-pagination-bullet {
    background: var(--primary-purple);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gradient-1);
    width: 30px;
    border-radius: 6px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-purple);
    background: rgba(168, 85, 247, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    outline: none !important;
    border: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.swiper-button-next:focus,
.swiper-button-prev:focus {
    outline: none !important;
    box-shadow: none;
}

.swiper-button-next:active,
.swiper-button-prev:active {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--gradient-1);
    color: var(--text-light);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

/* Enjoy Section */
.enjoy-section {
    background: rgba(236, 72, 153, 0.05);
}

.enjoy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.enjoy-card {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.enjoy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.enjoy-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.enjoy-card:hover::before {
    opacity: 0.1;
}

.enjoy-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.enjoy-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.enjoy-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Download Section */
.download-section {
    background: rgba(168, 85, 247, 0.1);
    text-align: center;
}

.download-content {
    max-width: 800px;
    margin: 0 auto;
}

.download-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.download-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.download-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.feature-tag {
    padding: 10px 20px;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 25px;
    font-size: 1rem;
    color: var(--text-light);
    backdrop-filter: blur(10px);
}

.download-motto {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.download-button i {
    font-size: 2.5rem;
}

.download-button:hover {
    background: var(--gradient-1);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.4);
}

.button-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.button-platform {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: rgba(5, 5, 16, 0.8);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }
    
    .banner-image {
        max-width: 80%;
        width: 80%;
        margin: 0 auto;
        display: block;
    }
    
    .screenshot-card {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .screenshot-card img {
        width: 80%;
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .download-title {
        font-size: 2.5rem;
    }

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

    .hero-buttons,
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button,
    .download-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .swiper-slide {
        max-width: 100%;
        width: 100% !important;
    }
    
    .screenshot-card {
        width: 100%;
        margin: 0;
    }
    
    .swiper {
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }
    
    .swiper-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .swiper-slide {
        max-width: 100%;
        width: 100% !important;
    }
    
    .screenshot-card {
        width: 100%;
    }
    
    .screenshot-card img {
        width: 100%;
        height: auto;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 16, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(10, 10, 26, 0.95);
    border: 2px solid rgba(168, 85, 247, 0.5);
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 80px rgba(168, 85, 247, 0.4);
    transform: scale(0.8) translateY(50px);
    transition: transform 0.3s ease;
    backdrop-filter: blur(20px);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: var(--gradient-1);
    transform: rotate(90deg);
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.5);
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-light);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(168, 85, 247, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(168, 85, 247, 0.7);
    }
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.modal-message {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-button {
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.modal-button.primary {
    background: var(--gradient-1);
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.modal-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.6);
}

.modal-button.secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid;
    border-image: var(--gradient-1) 1;
}

.modal-button.secondary:hover {
    background: var(--gradient-1);
    border-image: none;
    transform: translateY(-3px);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 40px 30px;
        max-width: 90%;
    }

    .modal-title {
        font-size: 1.6rem;
    }

    .modal-message {
        font-size: 1rem;
    }

    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

