/*
Theme Name: MakeReel Tool
Theme URI: https://makereel.in
Author: MakeReel Team
Author URI: https://makereel.in
Description: Custom Video Reaction Tool Theme
Version: 1.0
License: GPL v2
Text Domain: makereel-tool
*/

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* Header */
.site-header {
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.logo {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(45deg, #f093fb, #f5576c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 30px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 1;
}

/* Hero Section */
.hero {
  padding: 150px 0 100px;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #f093fb, #f5576c, #4facfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Video Input Box */
.video-input-box {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto 60px;
  backdrop-filter: blur(10px);
}

.input-group {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.video-url-input {
  flex: 1;
  padding: 18px 25px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.video-url-input:focus {
  border-color: #f5576c;
}

.video-url-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.platform-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.platform-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* Buttons */
.btn {
  padding: 18px 40px;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(45deg, #f093fb, #f5576c);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245,87,108,0.3);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Progress Bar */
.progress-container {
  display: none;
  margin-top: 30px;
}

.progress-container.active {
  display: block;
}

.progress-bar {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(45deg, #f093fb, #f5576c);
  border-radius: 10px;
  width: 0%;
  transition: width 0.5s;
}

.progress-text {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* Features Grid */
.features {
  padding: 80px 0;
}

.features h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

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

.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s;
}

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

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* Footer */
.site-footer {
  background: rgba(0,0,0,0.3);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 80px;
}

.site-footer p {
  color: rgba(255,255,255,0.5);
}

/* Animations */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.loading {
  animation: pulse 1.5s infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .input-group {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}
