:root {
  --primary: #007bff;
  --secondary: #6c757d;
  --background: #1e1e1e;
  --surface: #2d2d2d;
  --text: #ffffff;
  --text-secondary: #b3b3b3;
  --spacing: 1rem;
  --border-radius: 4px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Roboto", sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}

/* Navigation */
#mainNav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(45, 45, 45, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.brand-icon {
  color: var(--primary);
  font-size: 1.5rem;
}

.nav-container {
  position: relative;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.nav-links a i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.nav-links a:hover i {
  transform: translateY(-2px);
}

.nav-links a.active {
  color: var(--primary);
  background: rgba(0, 123, 255, 0.1);
}

.nav-indicator {
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-links a.active .nav-indicator {
  width: 20px;
}

/* Hamburger Menu */
#menuToggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  bottom: -6px;
}

/* Page Layout */
main {
  margin-top: 4rem;
  padding: var(--spacing);
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.hidden {
  display: none;
}

/* Forms */
.form-container {
  display: grid;
  gap: 2rem;
}

.form-section {
  background-color: var(--surface);
  padding: 1.5rem;
  border-radius: var(--border-radius);
}

.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 0.75rem;
  background-color: transparent;
  border: 1px solid var(--text-secondary);
  border-radius: var(--border-radius);
  color: var(--text);
  font-size: 1rem;
}

.input-group label {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  transition: var(--transition);
  color: var(--text-secondary);
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
  transform: translateY(-1.5rem);
  font-size: 0.875rem;
  color: var(--primary);
}

.form-grid .full-width {
  grid-column: 1 / -1;
}

.input-group textarea {
  width: 100%;
  padding: 1rem;
  padding-left: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text);
  font-size: 1rem;
  transition: var(--transition);
  resize: vertical;
  min-height: 100px;
}

.input-group textarea:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

.input-group textarea + label {
  top: 1rem;
}

.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-2rem);
  font-size: 0.875rem;
  color: var(--primary);
}

/* Buttons */
.btn-primary,
.btn-secondary {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-secondary {
  background-color: var(--surface);
  color: var(--text);
  border: 1px solid var(--text-secondary);
}

/* Preview */
.resume-preview {
  background-color: white;
  color: #333;
  padding: 2rem;
  margin: 1rem auto;
  max-width: 210mm;
  min-height: 297mm;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Home Page Styles */
.home-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  min-height: calc(100vh - 4rem);
  align-items: center;
  padding: 2rem;
}

.home-content {
  max-width: 700px;
}

.title-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.animate-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  background: linear-gradient(120deg, var(--primary), #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleSlide 0.8s ease-out;
}

.title-accent {
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin-top: 1rem;
  animation: accentWidth 1s ease-out forwards;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  animation: fadeIn 1s ease-out 0.5s both;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  animation: fadeIn 1s ease-out 0.7s both;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.feature-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cta-container {
  display: flex;
  gap: 1rem;
  animation: fadeIn 1s ease-out 0.9s both;
}

.btn-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-cta i {
  transition: transform 0.3s ease;
}

.btn-cta:hover i {
  transform: translateX(5px);
}

.home-decoration {
  position: relative;
  height: 100%;
}

.floating-elements {
  position: relative;
  height: 400px;
}

.float-item {
  position: absolute;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.2;
  animation: float 3s ease-in-out infinite;
}

.float-item:nth-child(1) {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.float-item:nth-child(2) {
  top: 50%;
  left: 60%;
  animation-delay: 0.5s;
}

.float-item:nth-child(3) {
  top: 70%;
  left: 40%;
  animation-delay: 1s;
}

@keyframes titleSlide {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes accentWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

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

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

/* Responsive adjustments for home page */
@media (max-width: 968px) {
  .home-container {
    grid-template-columns: 1fr;
  }

  .home-decoration {
    display: none;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cta-container {
    flex-direction: column;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--surface);
    padding: 1rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .nav-container.show {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
  }

  #menuToggle {
    display: block;
  }

  #menuToggle.active .hamburger {
    background: transparent;
  }

  #menuToggle.active .hamburger::before {
    transform: rotate(45deg) translate(4px, 4px);
  }

  #menuToggle.active .hamburger::after {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  .form-container {
    grid-template-columns: 1fr;
  }

  .resume-preview {
    padding: 1rem;
    margin: 0.5rem;
  }
}

@media (min-width: 769px) {
  #menuToggle {
    display: none;
  }

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

/* Build Section Styles */
.build-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.build-header {
  text-align: center;
  margin-bottom: 3rem;
}

.build-header h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(120deg, var(--primary), #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.progress-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text-secondary);
  transform: translateY(-50%);
  z-index: 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: var(--transition);
}

.progress-step i {
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 2px solid var(--text-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.progress-step.active i {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.progress-step span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.progress-step.active span {
  color: var(--primary);
}

.form-sections-container {
  margin-top: 3rem;
}

.form-section {
  display: none;
  animation: fadeSlide 0.5s ease-out;
}

.form-section.active {
  display: block;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-secondary);
}

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

.input-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-group input {
  width: 100%;
  padding: 1rem;
  padding-left: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text);
  font-size: 1rem;
  transition: var(--transition);
}

.input-group input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
}

.entries-container {
  margin-bottom: 1.5rem;
}

.entry-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  animation: fadeIn 0.3s ease-out;
}

.entry-card .remove-entry {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.entry-card .remove-entry:hover {
  color: #ff4444;
}

.btn-add {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.btn-add:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.skill-tag {
  background: rgba(0, 123, 255, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 0.3s ease-out;
}

.skill-tag .remove-skill {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 0 0.2rem;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .progress-bar {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .progress-step {
    flex: 1 1 40%;
  }
}

/* Preview Section Styles */
.preview-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.preview-header {
  text-align: center;
  margin-bottom: 2rem;
}

.gradient-text {
  font-size: 2.5rem;
  background: linear-gradient(120deg, var(--primary), #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.preview-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.preview-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface);
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.zoom-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.zoom-level {
  min-width: 60px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.preview-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.preview-actions button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  transition: var(--transition);
}

.preview-actions button:hover {
  transform: translateY(-2px);
}

.share-dropdown {
  position: relative;
}

.share-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: var(--surface);
  border-radius: 8px;
  padding: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  min-width: 150px;
  z-index: 100;
  transform-origin: top right;
  animation: scaleIn 0.2s ease-out;
}

.share-menu button {
  width: 100%;
  padding: 0.5rem 1rem;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 4px;
}

.share-menu button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.preview-container {
  position: relative;
  background: var(--surface);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.preview-page-info {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

.resume-preview {
  background: white;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  transform-origin: top center;
}

.preview-tips {
  margin-top: 2rem;
}

.tip-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.tip-card i {
  font-size: 1.5rem;
  color: var(--primary);
}

.tip-content h4 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.tip-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments for preview section */
@media (max-width: 768px) {
  .preview-toolbar {
    flex-direction: column;
    gap: 1rem;
  }

  .preview-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .preview-container {
    padding: 1rem;
  }

  .preview-page-info {
    position: static;
    text-align: center;
    margin-bottom: 1rem;
  }
}

/* Resume Preview Styles */
.modern-resume {
  padding: 40px;
  font-family: "Roboto", sans-serif;
  color: #333;
  line-height: 1.6;
}

.resume-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--primary);
}

.resume-header h1 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 15px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #666;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.resume-section {
  margin-bottom: 30px;
}

.resume-section h2 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.experience-item,
.education-item {
  margin-bottom: 25px;
  padding-left: 20px;
  border-left: 3px solid var(--primary);
}

.item-header {
  margin-bottom: 10px;
}

.item-header h3 {
  font-size: 20px;
  color: #444;
  margin-bottom: 5px;
}

.company,
.school {
  font-weight: 500;
  color: #666;
}

.date {
  color: #888;
  font-size: 14px;
  margin-left: 15px;
}

.responsibilities {
  list-style-type: disc;
  padding-left: 20px;
  color: #555;
}

.responsibilities li {
  margin-bottom: 5px;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-item {
  background: rgba(0, 123, 255, 0.1);
  color: var(--primary);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 14px;
}

/* Print Styles */
@media print {
  .modern-resume {
    padding: 20px;
  }

  .resume-header {
    border-bottom-color: #333;
  }

  .experience-item,
  .education-item {
    border-left-color: #333;
  }

  .skill-item {
    border: 1px solid #333;
  }
}

/* Customize Section Styles */
.customize-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.customize-header {
  text-align: center;
  margin-bottom: 3rem;
}

.customize-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

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

.customize-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.customize-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

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

.card-header i {
  font-size: 1.5rem;
  color: var(--primary);
}

.card-header h3 {
  font-size: 1.25rem;
  color: var(--text);
}

/* Template Selector Styles */
.template-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.template-preview {
  position: relative;
  cursor: pointer;
  text-align: center;
}

.template-preview img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.template-preview:hover img {
  transform: scale(1.05);
}

.template-preview input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.template-preview label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.template-preview input[type="radio"]:checked + label {
  color: var(--primary);
  font-weight: 500;
}

/* Typography Options Styles */
.typography-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.font-selector select {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text);
  margin: 0.5rem 0;
}

.font-preview {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Color Options Styles */
.color-presets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}

.color-preset {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.color-pickers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.color-input {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.color-input input[type="color"] {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* Layout Options Styles */
.spacing-control {
  margin-bottom: 1.5rem;
}

.spacing-preview {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}

.spacing-block {
  height: 20px;
  background: var(--primary);
  border-radius: 4px;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.sortable-sections {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.section-item {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: move;
  transition: var(--transition);
}

.section-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.customize-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .customize-grid {
    grid-template-columns: 1fr;
  }

  .template-options {
    grid-template-columns: 1fr;
  }

  .color-presets {
    grid-template-columns: 1fr;
  }
}

/* Footer Styles */
.app-footer {
  background: var(--surface);
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-icon-container {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-icon {
  font-size: 1.5rem;
  color: var(--primary);
  z-index: 1;
}

.icon-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.3;
  animation: glow 2s ease-in-out infinite;
}

.brand-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  background: linear-gradient(120deg, var(--primary), #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-credit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-credit p {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-credit .fa-heart {
  color: #ff4444;
}

.pulse {
  animation: pulse 1.5s ease-in-out infinite;
}

.credit-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: var(--transition);
}

.credit-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.credit-text {
  color: var(--text);
}

.credit-highlight {
  color: var(--primary);
  font-weight: 600;
}

.credit-link i {
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.credit-link:hover i {
  color: var(--primary);
  transform: rotate(360deg);
}

.footer-copyright {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@keyframes glow {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
