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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #58c6ff 0%, #076ad9 40%, #3b7bffd4 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }


.logo-icon {
  width: 32px;
  height: 32px;
  color: #076ad9;
  /* グラデーションの中間色を使用 */
  animation: logoFloat 3s ease-in-out infinite;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: 
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(10px) translateY(-10px); }
    75% { transform: translateX(-5px) translateY(5px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-banner {
    background: rgb(255 248 248 / 80%);
    padding: 12px 24px;
    border-radius: 25px;
    margin-bottom: 40px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 50px;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-description p {
    margin-bottom: 10px;
}

.cta-button {

    color: black;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {


    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 149, 0, 0.3);
}

.button-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #4285F4;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.service-cta-button {
  background: linear-gradient(90deg, #58c6ff 0%, #076ad9 40%, #ff3bef 80%);
  border: none;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.service-cta-button:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.3);
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-logo {
    margin-bottom: 30px;
}

.service-name {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(90deg, #58c6ff 0%, #076ad9 40%, #ff3bef 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 15px 20px;
  background-color: linear-gradient(135deg, #f0f4ff, #e8f0fe);
  border-radius: 15px;
  border: 2px solid #e8f0fe;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #e8f0fe, #f0f4ff);
}

.contact-content {
    text-align: center;
    margin-bottom: 80px;
}

.contact-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: linear-gradient(90deg, #58c6ff 0%, #076ad9 40%, #ff3bef 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.contact-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.contact-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.contact-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.contact-btn.individual {
    background: linear-gradient(90deg, #58c6ff 0%, #3b7dff 80%);
    color: white;
}

.contact-btn.individual:hover {
    background: linear-gradient(90deg, #58c6ff 0%, #3b7dff 80%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 182, 193, 0.4);
}

.contact-btn.corporate {
    background: linear-gradient(90deg, #58c6ff 0%, #3b7dff 80%);
    color: white;
}

.contact-btn.corporate:hover {
    background: linear-gradient(90deg, #58c6ff 0%, #3b7dff 80%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.3);
}

.media-logos {
    padding: 40px 0;
    border-top: 1px solid rgba(66, 133, 244, 0.2);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.logo-item {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* News Section */
.news {
    padding: 100px 0;
    background: white;
}

.news-cta-button {
    background: transparent;
    border: 2px solid #FF9500;
    color: #FF9500;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.news-cta-button:hover {
    background: #FF9500;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 149, 0, 0.3);
}

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

.news-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid;
}

.news-card.event {
    border-left-color: #9C27B0;
    
}

.news-card.press {
    border-left-color: #4CAF50;
 
}

.news-card.media {
    border-left-color: #FF9800;
    
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.news-date {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.news-category {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.news-card.event .news-category {
    background: #9C27B0;
}

.news-card.press .news-category {
    background: #4CAF50;
}

.news-card.media .news-category {
    background: #FF9800;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* Join Us Section */
.join-us {
    padding: 100px 0;
    background: #f8f9fa;
}

.join-cta-button {
    background: transparent;
    border: 2px solid #FF9500;
    color: #FF9500;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.join-cta-button:hover {
    background: #FF9500;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 149, 0, 0.3);
}

.join-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.join-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid;
}

.join-card.people {
    border-color: #9C27B0;
}

.join-card.infographic {
    border-color: #FF9500;
}

.join-card.message {
    border-color: #FF9500;
}

.join-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.join-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.card-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
}

.card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.infographic-content {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #fff3e0, #fef7ed);
    border-radius: 15px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #FF9500;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.card-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-button:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-button .button-icon {
    width: 24px;
    height: 24px;
    color: #4285F4;
}

/* Final Contact Section */
.final-contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f0fe, #f0f4ff);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .join-cards {
        grid-template-columns: 1fr;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .infographic-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .service-card,
    .news-card,
    .card-content {
        padding: 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .services,
    .news,
    .join-us,
    .contact-section,
    .final-contact {
        padding: 60px 0;
    }
}

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

.service-card,
.news-card,
.join-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
.cta-button:focus,
.contact-btn:focus {
    outline: 2px solid #4285F4;
    outline-offset: 2px;
}

/* Advanced SVG Animations and 3D Effects */
.logo-icon {
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

/* 3D Card Effects */
.service-card,
.news-card,
.join-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.news-card:hover {
    transform: translateY(-5px) rotateX(2deg);
}

.join-card:hover {
    transform: translateY(-10px) rotateX(3deg) rotateY(2deg);
}

/* Gradient Text Effects */
.hero-title {
background: linear-gradient(135deg, #030000 0%, #98a9b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
  background: linear-gradient(90deg, #58c6ff 0%, #076ad9 40%, #ff3bef 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* Advanced Button Effects */
.cta-button,
.service-cta-button,
.news-cta-button,
.join-cta-button,
.contact-btn {
    position: relative;
    overflow: hidden;
}

.cta-button::before,
.service-cta-button::before,
.news-cta-button::before,
.join-cta-button::before,
.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before,
.service-cta-button:hover::before,
.news-cta-button:hover::before,
.join-cta-button:hover::before,
.contact-btn:hover::before {
    left: 100%;
}

/* Floating Animation for Service Cards */
.service-card:nth-child(1) { animation: float 6s ease-in-out infinite; }
.service-card:nth-child(2) { animation: float 6s ease-in-out infinite 1s; }
.service-card:nth-child(3) { animation: float 6s ease-in-out infinite 2s; }
.service-card:nth-child(4) { animation: float 6s ease-in-out infinite 3s; }
.service-card:nth-child(5) { animation: float 6s ease-in-out infinite 4s; }

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

/* Glowing Effect for Important Elements */
.hero-banner {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); }
    to { box-shadow: 0 0 30px rgb(45 34 124 / 40%),
      0 0 40px rgba(255, 149, 0, 0.2)}
}

/* Advanced Background Patterns */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
    animation: backgroundShift 15s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Morphing SVG Icons */
.button-icon {
    transition: all 0.3s ease;
}

.cta-button:hover .button-icon,
.service-cta-button:hover .button-icon,
.news-cta-button:hover .button-icon,
.join-cta-button:hover .button-icon,
.contact-btn:hover .button-icon {
    transform: translateX(5px) scale(1.1);
}

/* Particle Effect Background */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(66, 133, 244, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 149, 0, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(156, 39, 176, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(76, 175, 80, 0.3), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: particleMove 20s linear infinite;
    pointer-events: none;
}

@keyframes particleMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-150px) translateY(-100px); }
}

/* Glass Morphism Effect */
.service-card,
.news-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.join-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
}

/* Advanced Hover States */
.service-name {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-name::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(66, 133, 244, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover .service-name::before {
    left: 100%;
}

.service-card:hover .service-name {
    transform: scale(1.05);
    color: #3367d6;
}

/* Scroll-triggered Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations to specific elements */
.service-card:nth-child(odd) {
    animation: slideInFromLeft 0.8s ease-out;
}

.service-card:nth-child(even) {
    animation: slideInFromRight 0.8s ease-out;
}

.news-card {
    animation: scaleIn 0.6s ease-out;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-background::after {
        display: none; /* Reduce complexity on mobile */
    }
    
    .services::before {
        display: none; /* Reduce complexity on mobile */
    }
    
    .service-card,
    .news-card,
    .join-card {
        transform: none !important; /* Disable 3D effects on mobile */
    }
    
    .service-card:hover,
    .news-card:hover,
    .join-card:hover {
        transform: translateY(-5px) !important;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    .service-card,
    .news-card,
    .join-card {
        background: rgba(30, 30, 30, 0.9);
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .section-description,
    .card-description,
    .service-description {
        color: #cccccc;
    }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
  padding: 60px 0 20px;
  margin-top: 100px;
}

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

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #58c6ff 0%, #076ad9 40%, #ff3bef 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo .logo-icon {
  width: 32px;
  height: 32px;
  color: #58c6ff;
}

.footer-description {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #58c6ff 0%, #076ad9 40%, #ff3bef 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover {
  color: #58c6ff;
  transform: translateX(5px);
}

.footer-contact p {
  color: #cccccc;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-legal a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #58c6ff;
}

.footer-copyright {
  color: #999999;
  font-size: 14px;
  margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .footer-legal {
    gap: 10px;
  }

  .footer-legal a {
    font-size: 13px;
  }

  .footer-copyright {
    font-size: 13px;
  }
}
