/* Reset and Body */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #0f0f23, #1a1a2e, #16213e);
  color: #fff;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #ff6b35;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}
.nav-links a:hover {
  color: #ff6b35;
  transform: translateY(-2px);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,107,53,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(247,147,30,0.1) 0%, transparent 50%);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ff6b35, #f7931e, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s ease-in-out infinite alternate;
  text-shadow: 0 0 50px rgba(255, 107, 53, 0.3);
}
@keyframes glow {
  from { text-shadow: 0 0 20px rgba(255, 107, 53, 0.3); }
  to { text-shadow: 0 0 30px rgba(255, 107, 53, 0.6); }
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.cta-button {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

/* Gallery */
.gallery {
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.3);
}
.gallery h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

/* UI Cards */
.ui-card {
  background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(247,147,30,0.1));
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}
.ui-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}
.ui-card:hover::before {
  left: 100%;
}
.ui-card:hover {
  transform: translateY(-10px);
  border-color: #ff6b35;
  box-shadow: 0 20px 40px rgba(255,107,53,0.3);
}
.ui-preview {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.ui-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.ui-card:hover .ui-preview img {
  transform: scale(1.1);
}
.ui-card h3 {
  color: #ff6b35;
  margin-bottom: 0.5rem;
}
.ui-card p {
  color: rgba(255, 255, 255, 0.8);
}
.ui-types {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.ui-type-tag {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Features */
.features {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255,107,53,0.05), rgba(247,147,30,0.05));
}
.features h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.feature-card {
  text-align: center;
  padding: 2rem;
  background: rgba(0,0,0,0.3);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: 0.3s;
  backdrop-filter: blur(10px);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: #ff6b35;
  box-shadow: 0 15px 30px rgba(255,107,53,0.2);
}
.feature-icon {
  font-size: 3rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 40px 0;
  text-align: center;
  border-top: 2px solid rgba(255, 107, 53, 0.3);
}
.footer-content p {
  color: rgba(255,255,255,0.8);
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.social-links a {
  font-size: 1.5rem;
  color: #ff6b35;
  transition: 0.3s;
}
.social-links a:hover {
  color: #f7931e;
  transform: scale(1.2);
}

/* Modal overlay */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}
.image-modal img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.5);
  animation: zoomIn 0.3s ease;
}
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1.1rem; }
  .nav-links { gap: 1rem; flex-wrap: wrap; }
  .gallery-grid { grid-template-columns: 1fr; }
}
