/* Apps Section Styles */
.apps-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.apps-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.apps-section .container {
  position: relative;
  z-index: 2;
}

.apps-section .section-title {
  text-align: center;
  margin-bottom: 20px;
}

.apps-section .section-title .title-en {
  display: block;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.apps-section .section-title .title-ja {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.apps-description {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 50px;
  opacity: 0.9;
}

.apps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.app-platform {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-title {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: white;
}

.platform-icon {
  font-size: 1.8rem;
  margin-right: 10px;
}

.app-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.app-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.app-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.app-info {
  flex: 1;
}

.app-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: white;
}

.app-info p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

.store-badge {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.store-badge:hover {
  transform: scale(1.05);
}

.apps-cta {
  text-align: center;
}

.apps-button {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.apps-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.apps-button .button-arrow {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.apps-button:hover .button-arrow {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .apps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .app-platform {
    padding: 20px;
  }
  
  .app-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .store-badge {
    height: 45px;
  }
  
  .apps-section .section-title .title-ja {
    font-size: 2rem;
  }
  
  .apps-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .app-item {
    padding: 15px;
  }
  
  .app-info h4 {
    font-size: 1rem;
  }
  
  .app-info p {
    font-size: 0.8rem;
  }
  
  .store-badge {
    height: 40px;
  }
}
