@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --primary: #6366f1;
  --secondary: #4f46e5;
  --dark: #1e293b;
  --light: #f8fafc;
  --accent: #f43f5e;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  min-height: 100vh;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(244, 63, 94, 0.1) 0%, transparent 20%);
  z-index: -1;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a192f 0%, #112240 50%, #1a365d 100%);
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(100, 240, 255, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(255, 107, 255, 0.1) 0%, transparent 20%),
    url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MDAiIGhlaWdodD0iMzUwIj4KICA8ZmlsdGVyIGlkPSJub2lzZSIgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSI+CiAgICA8ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC42IiBudW1PY3RhdmVzPSI1IiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+CiAgPC9maWx0ZXI+CiAgPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI25vaXNlKSIgb3BhY2l0eT0iMC4wNSIvPgo8L3N2Zz4=');
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-block;
  background: rgba(100, 240, 255, 0.1);
  color: #64f0ff;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(100, 240, 255, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

h1.glowing-text {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0.5rem 0 1.5rem;
  background: linear-gradient(90deg, #ffffff, #64f0ff, #b47dff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(100, 240, 255, 0.2);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

h1 .highlight {
  display: block;
  background: linear-gradient(90deg, #64f0ff, #b47dff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #64f0ff, #b47dff);
  border-radius: 3px;
  opacity: 0.3;
}

.divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #64f0ff, #b47dff);
  margin: 1.5rem auto;
  border-radius: 2px;
  opacity: 0.8;
}

h2.subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 auto 2.5rem;
  color: rgba(200, 225, 255, 0.9);
  max-width: 800px;
  line-height: 1.6;
  animation: fadeIn 1s ease-out 0.3s both;
}

.welcome-message {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: rgba(200, 225, 255, 0.8);
  animation: fadeIn 1s ease-out 0.6s both;
  background: rgba(10, 25, 47, 0.5);
  padding: 2.5rem;
  border-radius: 16px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(100, 240, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 3rem;
  font-family: Georgia, serif;
  color: #64f0ff;
  line-height: 1;
  opacity: 0.3;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(90deg, #64f0ff, #b47dff);
  color: #0a192f;
  border: none;
  box-shadow: 0 4px 15px rgba(100, 240, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(100, 240, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: #64f0ff;
  border: 1px solid #64f0ff;
}

.btn-outline:hover {
  background: rgba(100, 240, 255, 0.1);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(200, 225, 255, 0.7);
  font-size: 0.9rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-indicator svg {
  margin-top: 0.5rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  color: #64f0ff;
}

.scroll-indicator:hover svg {
  transform: translateY(5px);
  opacity: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #64f0ff, 0 0 40px #64f0ff;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px #ff6bff, 0 0 40px #ff6bff, 0 0 50px #ff6bff, 0 0 60px #ff6bff;
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes borderGrow {
  0% {
    width: 0%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0%;
    left: 100%;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1.glowing-text {
    font-size: 3rem;
  }
  
  h2.subtitle {
    font-size: 1.5rem;
  }
  
  .welcome-message {
    font-size: 1.1rem;
    padding: 1.5rem;
  }
}

.log-container {
  max-width: 1100px;
  margin: -5rem auto 5rem;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.week-section {
  margin-bottom: 3rem;
  position: relative;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, visibility 0.3s ease;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  will-change: opacity, transform;
}

.week-section.hidden {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  position: absolute;
  width: 100%;
  pointer-events: none;
}

.week-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.week-header {
  padding: 1.5rem 2rem;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: white;
  margin: 0;
  border-radius: 12px 12px 0 0;
}

.week-header h2 {
  margin: 0;
  color: white;
  font-size: 1.8rem;
}

.week-header h2::after {
  display: none;
}

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

.day-card {
  background: rgba(30, 41, 59, 0.7);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.day-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
}

.day-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.day-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0;
}

.day-date {
  margin-left: auto;
  font-size: 0.9rem;
  color: #94a3b8;
  background: rgba(99, 102, 241, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.day-tasks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.day-tasks li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.75rem;
  margin-bottom: 0.5rem;
  color: #e2e8f0;
  transition: all 0.2s ease;
  cursor: pointer;
}

.day-tasks li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  transition: all 0.3s ease;
}

.day-tasks li.completed {
  color: #64748b;
  text-decoration: line-through;
}

.day-tasks li.completed::before {
  content: '✓';
  color: #10b981;
  transform: scale(1.2);
}

h2 {
  font-size: 1.8rem;
  color: #e2e8f0;
  margin: 3rem 0 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}

.log-entry {
  background: rgba(30, 41, 59, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.log-entry::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.log-entry:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: rgba(99, 102, 241, 0.3);
}

.log-entry ul {
  list-style: none;
  padding-left: 0;
}

.log-entry ul li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  color: #e2e8f0;
  transition: all 0.3s ease;
}

.log-entry ul li:hover {
  color: #fff;
  transform: translateX(5px);
}

.log-entry ul li {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  padding-left: 2rem;
}

.log-entry ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  transition: all 0.3s ease;
}

.log-entry ul li.completed {
  color: #64748b;
  text-decoration: line-through;
}

.log-entry ul li.completed::before {
  content: '✓';
  color: #10b981;
  transform: scale(1.2);
}

.log-entry ul li:hover::before {
  color: var(--primary);
  transform: translateX(5px);
}

footer {
  text-align: center;
  padding: 4rem 2rem 2rem;
  color: #94a3b8;
  font-size: 0.9rem;
  background: rgba(10, 25, 47, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(100, 240, 255, 0.1);
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #64f0ff, #b47dff, transparent);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  color: #e2e8f0;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 1px solid rgba(100, 240, 255, 0.2);
  background: rgba(100, 240, 255, 0.05);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.social-link i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.social-link:hover {
  background: rgba(100, 240, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(100, 240, 255, 0.1);
}

.social-link:nth-child(1):hover { color: #e1306c; border-color: #e1306c; }
.social-link:nth-child(2):hover { color: #25d366; border-color: #25d366; }
.social-link:nth-child(3):hover { color: #1da1f2; border-color: #1da1f2; }

footer p {
  margin: 1rem 0 0;
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
}

.social-links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icon {
  width: 32px;
  height: 32px;
  color: #94a3b8;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: #6366f1;
  transform: translateY(-3px);
}

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

.week-section {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.week-section.animate {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .log-container {
    margin-top: -3rem;
  }
  
  .log-entry {
    padding: 1.5rem;
  }
}

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

.floating {
  animation: float 6s ease-in-out infinite;
}