
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #fff8f0 0%, #ffe4cc 100%);
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff6600;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff6600;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

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

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(45deg, #ff6600, #ff8833);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #ff6600;
  border: 2px solid #ff6600;
}

.btn-secondary:hover {
  background: #ff6600;
  color: white;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.profile-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  border: 5px solid white;
}

.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.floating-icons i {
  position: absolute;
  font-size: 2rem;
  color: #ff6600;
  animation: float 3s ease-in-out infinite;
}

.floating-icons .fa-youtube {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.floating-icons .fa-twitch {
  bottom: 30%;
  left: 5%;
  animation-delay: 1s;
}

.floating-icons .fa-tiktok {
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

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

/* Section Styling */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #ff6600, #ff8833);
  border-radius: 2px;
}

/* About Section */
.about {
  padding: 80px 0;
  background: white;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.highlight {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #fff8f0, #ffe4cc);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.highlight i {
  font-size: 3rem;
  color: #ff6600;
  margin-bottom: 1rem;
}

.highlight h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

/* Content Section */
.content {
  padding: 80px 0;
}

.content-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 12px 24px;
  border: 2px solid #ff6600;
  background: transparent;
  color: #ff6600;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.tab-btn.active,
.tab-btn:hover {
  background: #ff6600;
  color: white;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

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

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.video-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-thumbnail {
  height: 200px;
  background: linear-gradient(45deg, #ff6600, #ff8833);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-thumbnail i {
  font-size: 4rem;
  color: white;
}

.duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
}

.video-card h3 {
  padding: 1rem;
  margin-bottom: 0.5rem;
}

.video-card p {
  padding: 0 1rem;
  color: #666;
  margin-bottom: 1rem;
}

.video-stats {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #666;
  gap: 1rem;
  flex-wrap: wrap;
}

.video-stats span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Stream Info */
.stream-info {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.stream-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  margin-bottom: 1rem;
}

.stream-status.offline {
  background: #f0f0f0;
  color: #666;
}

.stream-status.offline i {
  color: #ccc;
}

.recent-streams {
  margin-top: 2rem;
}

.stream-list {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stream-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.stream-item:last-child {
  border-bottom: none;
}

/* TikTok Grid */
.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.tiktok-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tiktok-video {
  height: 300px;
  background: linear-gradient(45deg, #ff0050, #ff4080);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tiktok-video {
  position: relative;
}

.tiktok-video i {
  font-size: 4rem;
  color: white;
}

.tiktok-title {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  text-align: center;
}

.tiktok-stats {
  padding: 1rem;
  display: flex;
  justify-content: space-around;
  font-size: 0.9rem;
}

/* Gallery */
.gallery {
  padding: 80px 0;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item.placeholder {
  height: 250px;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #666;
}

.gallery-item.placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 102, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 2rem;
  color: white;
}

/* Stats Section */
.stats {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.youtube-stat i { color: #ff0000; }
.twitch-stat i { color: #9146ff; }
.tiktok-stat i { color: #ff0050; }
.total-stat i { color: #ff6600; }

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 0.5rem;
}

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

/* Community Section */
.community {
  padding: 80px 0;
  background: white;
}

.community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 15px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
}

.social-link.youtube { background: linear-gradient(45deg, #ff0000, #ff4444); }
.social-link.twitch { background: linear-gradient(45deg, #9146ff, #b366ff); }
.social-link.tiktok { background: linear-gradient(45deg, #ff0050, #ff4080); }
.social-link.discord { background: linear-gradient(45deg, #5865f2, #7289da); }

.social-link i {
  font-size: 1.5rem;
}

.newsletter {
  background: linear-gradient(135deg, #fff8f0, #ffe4cc);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

.newsletter h3 {
  margin-bottom: 1rem;
  color: #333;
}

.newsletter p {
  margin-bottom: 2rem;
  color: #666;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 12px;
  border: 2px solid #ff6600;
  border-radius: 25px;
  outline: none;
}

.newsletter-form button {
  padding: 12px 24px;
  background: #ff6600;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #e55a00;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 2rem 0;
}

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

.footer-logo {
  font-size: 1.2rem;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0,0,0,0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

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

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

  .community-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .social-links {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

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

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

  .hero-buttons {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
