:root {
     --accent: #00f2fe;
     --bg: #050505;
     --surface: #111111;
     --border: #222222;
     --text: #ffffff;
     --text-dim: #888888;
}

body {
     font-family: 'Plus Jakarta Sans', sans-serif;
     background-color: var(--bg);
     color: var(--text);
     margin: 0;
     padding: 0;
     -webkit-font-smoothing: antialiased;
}

/* Top Bar Info */
.info-bar {
     background: linear-gradient(90deg, rgba(0, 242, 254, 0.1) 0%, rgba(5, 5, 5, 0) 100%);
     border-bottom: 1px solid var(--border);
     padding: 12px 20px;
     font-size: 0.85rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
}

.info-bar a {
     color: var(--accent);
     text-decoration: none;
     font-weight: 600;
     margin: 0 5px;
}

.info-bar a:hover {
     border-bottom: 1px solid var(--accent);
}

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

/* Dashboard Header */
.dashboard-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
     margin-bottom: 50px;
}

.stat-card {
     background: var(--surface);
     border: 1px solid var(--border);
     padding: 15px 30px;
     border-radius: 12px;
     display: flex;
     flex-direction: column;
     align-items: flex-end;
}

.stat-card h2 {
     margin: 0;
     font-size: 2.5rem;
     font-weight: 800;
     color: var(--accent);
}

.stat-card label {
     font-size: 0.7rem;
     letter-spacing: 2px;
     color: var(--text-dim);
     text-transform: uppercase;
}

/* Search & Controls */
.controls {
     display: flex;
     gap: 20px;
     margin-bottom: 40px;
     position: sticky;
     top: 20px;
     z-index: 100;
}

.search-wrapper {
     position: relative;
     flex-grow: 1;
}

.search-wrapper i {
     position: absolute;
     left: 20px;
     top: 50%;
     transform: translateY(-50%);
     color: var(--text-dim);
     width: 18px;
}

.search-input {
     width: 100%;
     padding: 18px 20px 18px 55px;
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid var(--border);
     border-radius: 14px;
     color: white;
     font-size: 1rem;
     backdrop-filter: blur(10px);
     transition: 0.3s;
     box-sizing: border-box;
}

.search-input:focus {
     border-color: var(--accent);
     outline: none;
     background: rgba(255, 255, 255, 0.05);
}

.btn-refresh {
     background: var(--surface);
     border: 1px solid var(--border);
     color: white;
     padding: 0 25px;
     border-radius: 14px;
     cursor: pointer;
     font-weight: 600;
     display: flex;
     align-items: center;
     gap: 10px;
}

/* Grid */
.addon-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
     gap: 25px;
}

.card {
     background: var(--surface);
     border: 1px solid var(--border);
     border-radius: 20px;
     padding: 30px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     position: relative;
     overflow: hidden;
}

.card::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: radial-gradient(circle at top right, rgba(0, 242, 254, 0.05), transparent);
     pointer-events: none;
}

.card:hover {
     border-color: var(--accent);
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-title {
     font-size: 1.25rem;
     font-weight: 700;
     margin: 0 0 12px 0;
     color: #fff;
     word-break: break-all;
}

.card-desc {
     font-size: 0.9rem;
     color: var(--text-dim);
     line-height: 1.6;
     min-height: 48px;
     margin-bottom: 20px;
}

.meta {
     display: flex;
     gap: 15px;
     font-size: 0.75rem;
     color: #555;
     font-weight: 600;
}

.meta span {
     display: flex;
     align-items: center;
     gap: 5px;
}

.card-actions {
     margin-top: 30px;
     display: flex;
     gap: 12px;
}

.btn {
     flex: 1;
     padding: 14px;
     border-radius: 12px;
     font-weight: 700;
     font-size: 0.85rem;
     cursor: pointer;
     border: none;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     text-transform: uppercase;
     letter-spacing: 1px;
     transition: 0.2s;
}

.btn-build {
     background: var(--accent);
     color: #000;
}

.btn-build:hover {
     filter: brightness(1.1);
     transform: scale(1.02);
}

.btn-build:disabled {
     background: #222;
     color: #555;
     cursor: not-allowed;
}

.btn-download {
     background: #00ff87;
     color: #000;
     text-decoration: none;
     display: none;
}

.loader {
     text-align: center;
     padding: 100px;
     color: var(--text-dim);
     font-size: 1.2rem;
     font-weight: 300;
}



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

     .dashboard-header {
          flex-direction: column;
          align-items: flex-start;
          gap: 20px;
     }

     .stat-card {
          width: 100%;
          box-sizing: border-box;
     }
}