/* =========================================================
   DIV COMPONENTS PAGE — UIverse Premium
========================================================= */
/* =========================================================
   RESET
========================================================= */

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:"DM Sans",sans-serif;

  background:
    linear-gradient(
      135deg,
      #0f172a,
      #111827
    );

  color:white;

  overflow-x:hidden;
}
/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  width: var(--sidebar-w);
  height: 100vh;
  background: linear-gradient(160deg, #141428 0%, #1c1c35 100%);
  display: flex;
  flex-direction: column;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: transform var(--transition);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.brand-icon {
  font-size: 24px;
  color: var(--accent);
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: -0.5px;
}

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 16px 12px;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  color: #8a9bc0;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
}

.sidebar-nav li a i {
  width: 18px;
  text-align: center;
  font-size: 15px;
}

.sidebar-nav li a:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
  transform: translateX(3px);
}

.sidebar-nav li.active a {
  background: linear-gradient(90deg, rgba(235,104,53,0.2) 0%, rgba(235,104,53,0.05) 100%);
  color: var(--accent);
  border-left: 3px solid var(--accent);
}

.sidebar-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 16px;
}

.sidebar-footer a {
  color: #6a7a94;
  font-size: 16px;
  transition: color var(--transition);
}

.sidebar-footer a:hover {
  color: var(--accent);
}

/* Sidebar backdrop (mobile) */
.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
  backdrop-filter: blur(2px);
}

.sidebar-backdrop.visible {
  display: block;
}
/* =========================================================
   FOOTER
========================================================= */

.footer{
  margin-left:240px;

  padding:60px 42px 30px;

  border-top:1px solid rgba(255,255,255,.06);

  margin-top:60px;
}

.kpi-card{
  padding:28px;
  border-radius:22px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
}
.kpi-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.kpi-top h2{
  font-size:2.2rem;
}
.kpi-bar{
  margin-top:16px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  overflow:hidden;
}
.kpi-bar span{
  display:block;
  width:70%;
  height:100%;
  background:linear-gradient(90deg,#00d4ff,#7f5cff);
}

.toast-stack{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.toast{
  padding:14px 16px;
  border-radius:14px;
  font-size:14px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
}
.toast.success{border-left:4px solid #00ffbf;}
.toast.warning{border-left:4px solid #ffcc00;}
.toast.error{border-left:4px solid #ff4d4d;}
.footer-container{
  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

  gap:40px;
}
.search-box{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 18px;
  border-radius:16px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
}
.search-box input{
  background:transparent;
  border:none;
  outline:none;
  color:white;
  width:100%;
}


.steps{
  display:flex;
  justify-content:space-between;
  gap:10px;
}
.step{
  width:40px;
  height:40px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,0.08);
}
.step.done{
  background:#00ffbf;
  color:#000;
}
.step.active{
  background:linear-gradient(135deg,#7f5cff,#00d4ff);
}

.calendar-box{
  padding:20px;
  border-radius:18px;
  background:rgba(255,255,255,0.06);
}
.calendar-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:8px;
  margin-top:12px;
}
.day{
  padding:8px;
  text-align:center;
  border-radius:8px;
  background:rgba(255,255,255,0.04);
}
.day.active{
  background:#7f5cff;
}
.footer-logo{
  font-size:34px;

  margin-bottom:16px;

  background:
    linear-gradient(
      90deg,
      #7c3aed,
      #06b6d4
    );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.footer-col h3{
  margin-bottom:16px;

  color:white;
}



.float-stats{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:24px;
  border-radius:20px;
  background:linear-gradient(135deg,rgba(127,92,255,0.2),rgba(0,212,255,0.1));
}
.footer-col p,
.footer-col a{
  color:#94a3b8;

  text-decoration:none;

  line-height:1.9;

  transition:.3s ease;
}

.footer-col ul{
  list-style:none;
}

.footer-col a:hover{
  color:#a78bfa;
}

.footer-bottom{
  margin-top:40px;

  padding-top:24px;

  border-top:1px solid rgba(255,255,255,.06);

  text-align:center;

  color:#64748b;
}
.main-home{
  margin-left:240px;
  padding:42px;
}

/* =========================================================
   HERO
========================================================= */

.div-hero{
  position:relative;
  overflow:hidden;

  padding:80px 64px;

  border-radius:38px;

  background:
    radial-gradient(circle at top right,
    rgba(124,58,237,.18),
    transparent 35%),

    radial-gradient(circle at bottom left,
    rgba(235,104,53,.14),
    transparent 35%),

    linear-gradient(
      135deg,
      #18181f,
      #101827
    );

  border:1px solid rgba(255,255,255,.06);

  margin-bottom:40px;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:12px 20px;

  border-radius:999px;

  background:rgba(255,255,255,.06);

  border:1px solid rgba(255,255,255,.08);

  color:white;

  font-size:13px;
  font-weight:700;

  margin-bottom:28px;
}

.hero-title{
  font-size:clamp(58px,8vw,96px);

  line-height:.92;
  letter-spacing:-5px;

  color:white;

  margin-bottom:20px;
}

.hero-accent{
  background:
    linear-gradient(
      90deg,
      #7c3aed,
      #06b6d4
    );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-desc{
  max-width:720px;

  color:rgba(255,255,255,.72);

  line-height:1.9;

  font-size:17px;

  margin-bottom:34px;
}

.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;

  margin-bottom:42px;
}

.btn-primary,
.btn-ghost{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:15px 24px;

  border-radius:18px;

  font-weight:700;

  text-decoration:none;

  transition:.3s ease;
}

.btn-primary{
  background:
    linear-gradient(
      135deg,
      #7c3aed,
      #06b6d4
    );

  color:white;
}

.btn-ghost{
  background:rgba(255,255,255,.06);

  border:1px solid rgba(255,255,255,.08);

  color:white;
}

.btn-primary:hover,
.btn-ghost:hover{
  transform:translateY(-4px);
}

.hero-stats{
  display:flex;
  align-items:center;
  gap:30px;
  flex-wrap:wrap;
}

.stat{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.stat-number{
  font-size:30px;
  font-weight:800;

  color:white;
}

.stat-label{
  color:#94a3b8;
  font-size:14px;
}

.stat-divider{
  width:1px;
  height:40px;

  background:rgba(255,255,255,.08);
}

.hero-orb{
  position:absolute;

  border-radius:50%;

  filter:blur(70px);

  opacity:.4;
}

.orb-1{
  width:180px;
  height:180px;

  background:#7c3aed;

  top:-40px;
  right:40px;
}

.orb-2{
  width:160px;
  height:160px;

  background:#06b6d4;

  bottom:-40px;
  left:50px;
}

/*Scearch Filter*/
.scearch{
  display: flex;
  align-items: center;
  max-width: 250px;
  gap: 8px;
  background: var(--card-bg);
  border: 1.5px solid white;
  border-radius: 40px;
  padding: 7px 16px;
  margin-left: auto;
  transition: all var(--transition);
  margin-bottom: 2%;
}
.scearch i{
  font-size: 12px;
  color: #aaa;
}

#DivSearch{
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-primary);
  width: 160px;
}


/* =========================================================
   PAGE HEADER
========================================================= */

.forms-page-header{
  margin-bottom:38px;
}

.breadcrumb{
  display:flex;
  align-items:center;
  gap:10px;

  margin-bottom:20px;

  font-size:14px;
}

.breadcrumb a{
  text-decoration:none;
  color:#a78bfa;
}

.breadcrumb span{
  color:white;
}

.forms-page-header h1{
  font-size:52px;

  color:white;

  margin-bottom:16px;
}

.forms-page-header p{
  max-width:720px;

  color:#94a3b8;

  line-height:1.9;
}

.page-meta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;

  margin-top:26px;
}

.meta-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:12px 18px;

  border-radius:999px;

  background:rgba(255,255,255,.05);

  border:1px solid rgba(255,255,255,.06);

  color:white;

  font-size:13px;
  font-weight:700;
}

/* =========================================================
   SECTION
========================================================= */

.section-header{
  margin-bottom:34px;
}

.section-tag{
  display:inline-block;

  padding:10px 16px;

  border-radius:999px;

  background:rgba(124,58,237,.12);

  color:#a78bfa;

  font-size:12px;
  font-weight:700;

  margin-bottom:18px;
}

.section-title{
  font-size:42px;

  color:white;

  margin-bottom:14px;
}

.section-subtitle{
  color:#94a3b8;

  line-height:1.8;
}

/* =========================================================
   GRID
========================================================= */

.forms-grid{
  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(360px,1fr));

  gap:30px;
}

/* =========================================================
   COMPONENT CARD
========================================================= */

.form-component-card,
.component-card{
  position:relative;
  overflow:hidden;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.04),
      transparent
    );

  border:1px solid rgba(255,255,255,.06);

  border-radius:32px;

  padding:30px;

  transition:.35s ease;
}

.form-component-card:hover,
.component-card:hover{
  transform:translateY(-8px);

  border-color:#7c3aed;

  box-shadow:
    0 24px 44px rgba(0,0,0,.18);
}

.card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;

  margin-bottom:22px;
}

.card-label{
  font-size:28px;
  font-weight:800;

  color:white;
}

.card-tag{
  padding:8px 14px;

  border-radius:999px;

  font-size:11px;
  font-weight:700;
}

.tag-popular{
  background:rgba(124,58,237,.12);
  color:#a78bfa;
}

.tag-trending{
  background:rgba(6,182,212,.12);
  color:#22d3ee;
}

.tag-essential{
  background:rgba(34,197,94,.12);
  color:#4ade80;
}

.tag-new{
  background:rgba(249,115,22,.12);
  color:#fb923c;
}

/* =========================================================
   PREVIEW
========================================================= */

.form-preview{
  min-height:260px;
  max-height:280px;
  overflow:hidden;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:26px;

  border-radius:24px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.03),
      rgba(255,255,255,.01)
    );

  border:1px solid rgba(255,255,255,.04);

  margin-bottom:24px;
}

/* =========================================================
   COMPONENTS
========================================================= */

.profile-card,
.stats-card,
.notification-card,
.pricing-card,
.activity-card,
.info-card,
.testimonial-card,
.progress-card,
.team-card,
.feature-card,
.chat-card,
.glass-card{
  width:100%;
}

/* PROFILE */

.profile-card{
  text-align:center;

  padding:28px;

  border-radius:24px;

  background:rgba(255,255,255,.05);

  border:1px solid rgba(255,255,255,.06);
}

.avatar{
  width:82px;
  height:82px;

  margin:auto auto 18px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:34px;

  background:
    linear-gradient(
      135deg,
      #7c3aed,
      #06b6d4
    );

  color:white;
}

.profile-card h3{
  color:white;
  margin-bottom:8px;
}

.profile-card p{
  color:#94a3b8;
}

/* STATS */

.stats-card{
  padding:26px;

  border-radius:24px;

  background:rgba(255,255,255,.05);

  border:1px solid rgba(255,255,255,.06);
}

.stats-card h3{
  color:white;

  margin-bottom:24px;
}

.stats{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:14px;
}

.stats div{
  padding:18px;

  border-radius:18px;

  background:rgba(255,255,255,.04);

  text-align:center;
}

.stats h2{
  color:#a78bfa;
  margin-bottom:6px;
}

.stats p{
  color:#94a3b8;
}

/* NOTIFICATION */

.notification-card{
  padding:22px;

  border-radius:20px;

  background:
    linear-gradient(
      135deg,
      rgba(124,58,237,.14),
      rgba(6,182,212,.14)
    );

  color:white;

  font-weight:700;

  text-align:center;
}

/* PRICING */

.pricing-card{
  padding:30px;

  border-radius:24px;

  background:rgba(255,255,255,.05);

  border:1px solid rgba(255,255,255,.06);

  text-align:center;
}

.pricing-card h3{
  color:white;
  margin-bottom:12px;
}

.pricing-card h2{
  font-size:42px;

  color:#a78bfa;

  margin-bottom:20px;
}

.pricing-card ul{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.pricing-card li{
  color:#cbd5e1;
  list-style:none;
}

/* ACTIVITY */

.activity-card{
  padding:26px;

  border-radius:24px;

  background:rgba(255,255,255,.05);

  border:1px solid rgba(255,255,255,.06);
}

.activity-card h3{
  color:white;

  margin-bottom:20px;
}

.activity-card ul{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.activity-card li{
  list-style:none;

  padding:14px;

  border-radius:14px;

  background:rgba(255,255,255,.04);

  color:#cbd5e1;
}

/* INFO */

.info-card{
  padding:28px;

  border-radius:24px;

  background:
    linear-gradient(
      135deg,
      rgba(124,58,237,.12),
      rgba(255,255,255,.04)
    );
}

.info-card h3{
  color:white;

  margin-bottom:12px;
}

.info-card p{
  color:#cbd5e1;

  line-height:1.8;
}

/* =========================================================
   EXTRA COMPONENTS
========================================================= */

.testimonial-card,
.progress-card,
.team-card,
.chat-card{
  background:rgba(255,255,255,.05);

  border:1px solid rgba(255,255,255,.06);

  border-radius:24px;

  padding:24px;
}

.quote{
  color:#cbd5e1;

  line-height:1.8;

  margin-bottom:22px;

  font-style:italic;
}

.user-info{
  display:flex;
  align-items:center;
  gap:14px;
}

.user-info h4{
  color:white;
}

.user-info span{
  color:#94a3b8;
}

.progress-header{
  display:flex;
  justify-content:space-between;

  margin-bottom:14px;

  color:white;
}

.progress-bar{
  width:100%;
  height:12px;

  border-radius:999px;

  overflow:hidden;

  background:rgba(255,255,255,.08);

  margin-bottom:14px;
}

.progress-fill{
  width:75%;
  height:100%;

  background:
    linear-gradient(
      90deg,
      #7c3aed,
      #06b6d4
    );
}

.team-members{
  display:flex;
  justify-content:center;

  margin:22px 0;
}

.member{
  width:52px;
  height:52px;

  margin-left:-10px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#7c3aed;

  color:white;

  border:3px solid #0f172a;
}

.feature-card{
  background:
    linear-gradient(
      135deg,
      #7c3aed,
      #06b6d4
    );

  color:white;

  text-align:center;

  padding:32px;

  border-radius:24px;
}

.feature-icon{
  font-size:42px;

  margin-bottom:14px;
}

.chat-card{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.message{
  max-width:75%;

  padding:14px 18px;

  border-radius:18px;

  color:white;
}

.left{
  align-self:flex-start;

  background:rgba(255,255,255,.08);
}

.right{
  align-self:flex-end;

  background:#7c3aed;
}

.glass-card{
  padding:30px;

  border-radius:28px;

  background:rgba(255,255,255,.08);

  border:1px solid rgba(255,255,255,.12);

  backdrop-filter:blur(18px);

  color:white;
}

/* BENTO GRID */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}
.bento-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  transition: .3s ease;
}
.bento-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #a78bfa;
}
.bento-large {
  grid-column: span 2;
  text-align: left;
  align-items: flex-start;
}
.bento-large h3 {
  color: #a78bfa;
  margin-bottom: 8px;
}
.bento-large p {
  color: #94a3b8;
  font-size: 14px;
}
.bento-small {
  font-size: 24px;
}
.bento-medium {
  grid-column: span 2;
  font-weight: 700;
}

/* HOVER REVEAL CARD */
.hover-reveal-card {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
}
.reveal-content-front, .reveal-content-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  transition: 0.5s ease;
}
.reveal-content-front {
  color: white;
}
.reveal-content-back {
  background: #7c3aed;
  color: white;
  transform: translateY(100%);
}
.hover-reveal-card:hover .reveal-content-front {
  transform: translateY(-100%);
}
.hover-reveal-card:hover .reveal-content-back {
  transform: translateY(0);
}
.reveal-btn {
  margin-top: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  background: white;
  color: #7c3aed;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease;
}
.reveal-btn:hover {
  transform: scale(1.05);
}

/* EXPANDABLE CARD */
.expandable-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s ease;
}
.expand-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-weight: 700;
  cursor: pointer;
}
.expand-header i {
  transition: 0.4s ease;
  color: #94a3b8;
}
.expand-body {
  max-height: 0;
  padding: 0 20px;
  opacity: 0;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  transition: 0.4s ease;
}
.expandable-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #06b6d4;
}
.expandable-card:hover .expand-body {
  max-height: 100px;
  padding: 0 20px 20px;
  opacity: 1;
}
.expandable-card:hover .expand-header i {
  transform: rotate(180deg);
  color: #06b6d4;
}

/* FLOATING ACTION CARD */
.floating-action-card {
  width: 100%;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #1e293b, #0f172a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-action-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
  border-color: rgba(6, 182, 212, 0.4);
}
.floating-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #22d3ee;
}
.floating-action-card h3 {
  color: white;
  margin-bottom: 8px;
}
.floating-action-card p {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 20px;
}
.float-btn {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}
.float-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}


/* =========================================================
   CRM CARD
========================================================= */

.crm-card{
  padding:28px;
  border-radius:24px;

  background:
  linear-gradient(
    135deg,
    rgba(0,212,255,0.14),
    rgba(127,92,255,0.12)
  );

  border:1px solid rgba(255,255,255,0.08);
}

.crm-header{
  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:24px;
}

.crm-header p{
  color:rgba(255,255,255,0.68);
  margin-bottom:10px;
}

.crm-header h2{
  font-size:2.5rem;
}

.crm-icon{
  width:70px;
  height:70px;

  display:grid;
  place-items:center;

  border-radius:20px;

  background:linear-gradient(135deg,#7f5cff,#00d4ff);

  font-size:1.5rem;
}

.crm-progress{
  width:100%;
  height:14px;

  border-radius:999px;

  background:rgba(255,255,255,0.08);

  overflow:hidden;

  margin-bottom:18px;
}

.crm-progress-fill{
  width:68%;
  height:100%;

  background:linear-gradient(90deg,#00d4ff,#7f5cff);

  border-radius:999px;
}

.crm-footer{
  display:flex;
  justify-content:space-between;

  color:rgba(255,255,255,0.68);
}

/* =========================================================
   FILE MANAGER
========================================================= */

.file-card{
  padding:28px;
  border-radius:24px;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);
}

.file-top{
  display:flex;
  align-items:center;
  gap:16px;

  margin-bottom:28px;

  font-size:1.1rem;
  font-weight:700;
}

.file-top i{
  width:60px;
  height:60px;

  display:grid;
  place-items:center;

  border-radius:18px;

  background:linear-gradient(135deg,#ffb347,#ff4fd8);

  font-size:1.5rem;
}

.storage-bar{
  width:100%;
  height:14px;

  border-radius:999px;

  background:rgba(255,255,255,0.08);

  overflow:hidden;

  margin-bottom:16px;
}

.storage-fill{
  display:block;

  width:56%;
  height:100%;

  border-radius:999px;

  background:linear-gradient(90deg,#ff4fd8,#7f5cff);
}

.file-storage p{
  color:rgba(255,255,255,0.68);
}

/* =========================================================
   MUSIC PLAYER
========================================================= */

.music-card{
  text-align:center;

  padding:30px;
  border-radius:26px;

  background:
  linear-gradient(
    135deg,
    rgba(127,92,255,0.15),
    rgba(255,79,216,0.12)
  );

  border:1px solid rgba(255,255,255,0.08);
}

.music-cover{
  width:110px;
  height:110px;

  margin:auto auto 24px;

  display:grid;
  place-items:center;

  border-radius:50%;

  background:linear-gradient(135deg,#7f5cff,#ff4fd8);

  font-size:2.5rem;

  animation:spinDisc 10s linear infinite;
}

@keyframes spinDisc{
  from{
    transform:rotate(0deg);
  }

  to{
    transform:rotate(360deg);
  }
}

.music-card p{
  color:rgba(255,255,255,0.68);
  margin-top:10px;
}

.music-controls{
  display:flex;
  justify-content:center;
  gap:16px;

  margin-top:28px;
}

.music-controls button{
  width:48px;
  height:48px;

  border:none;
  border-radius:50%;

  background:rgba(255,255,255,0.08);

  color:white;

  cursor:pointer;

  transition:0.3s ease;
}

.music-controls button:hover{
  transform:translateY(-4px);
}

.play-btn{
  background:linear-gradient(135deg,#7f5cff,#00d4ff) !important;
}

/* =========================================================
   ACTIVITY FEED
========================================================= */

.activity-card{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.activity-item{
  display:flex;
  align-items:center;
  gap:16px;

  padding:18px 20px;

  border-radius:18px;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.06);
}

.activity-item p{
  color:rgba(255,255,255,0.72);
}

.activity-dot{
  width:14px;
  height:14px;

  border-radius:50%;

  background:#00ffbf;

  box-shadow:0 0 14px #00ffbf;
}

/* =========================================================
   WEATHER CARD
========================================================= */

.weather-card{
  padding:28px;
  border-radius:24px;

  background:
  linear-gradient(
    135deg,
    rgba(0,212,255,0.18),
    rgba(255,255,255,0.05)
  );

  border:1px solid rgba(255,255,255,0.08);
}

.weather-top{
  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:30px;
}

.weather-top h2{
  font-size:3rem;
}

.weather-top p{
  color:rgba(255,255,255,0.68);
}

.weather-top i{
  font-size:3rem;
  color:#00d4ff;
}

.weather-bottom{
  display:flex;
  justify-content:space-between;

  color:rgba(255,255,255,0.7);
}

/* =========================================================
   SOCIAL INSIGHTS
========================================================= */

.social-card{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.social-stat{
  display:flex;
  align-items:center;
  gap:20px;

  padding:22px;

  border-radius:20px;

  background:rgba(255,255,255,0.06);

  border:1px solid rgba(255,255,255,0.08);

  transition:0.3s ease;
}

.social-stat:hover{
  transform:translateY(-6px);
}

.social-stat i{
  width:60px;
  height:60px;

  display:grid;
  place-items:center;

  border-radius:18px;

  background:linear-gradient(135deg,#7f5cff,#00d4ff);

  font-size:1.4rem;
}

.social-stat span{
  color:rgba(255,255,255,0.65);
}
/* =========================================================
   ACTIONS
========================================================= */

.actions{
  display:flex;
  gap:14px;

  margin-top:22px;
}

.action-btn{
  flex:1;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  padding:14px 18px;

  border:none;

  border-radius:16px;

  font-size:14px;
  font-weight:700;

  cursor:pointer;

  transition:.3s ease;
}

.view-btn{
  background:rgba(124,58,237,.12);
  color:#a78bfa;
}

.copy-btn{
  background:rgba(6,182,212,.12);
  color:#22d3ee;
}

.action-btn:hover{
  transform:translateY(-3px);
}

/* =========================================================
   CODE BLOCK
========================================================= */

.code-block{
  max-height:0;

  overflow:hidden;

  opacity:0;

  margin-top:0;

  transition:.35s ease;

  border-radius:20px;

  background:#0f172a;

  color:#e2e8f0;
}

.code-block.open{
  max-height:700px;

  opacity:1;

  margin-top:22px;

  padding:22px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px){

  .main-home{
    margin-left:0;
  }

}

@media(max-width:768px){

  .main-home{
    padding:24px;
  }

  .div-hero{
    padding:54px 28px;
  }

  .hero-title{
    font-size:64px;
    letter-spacing:-3px;
  }

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

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

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

  .bento-large,
  .bento-medium{
    grid-column:1;
  }

}

@media(max-width:600px){

  .actions{
    flex-direction:column;
  }

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

}