/* ============================================
   JADWAL PUASA RAMADAN — STYLE
   Theme: Islamic Modern, Dark default
   Colors: Navy #1a237e, Gold #ffd700, White
   ============================================ */

/* ---------- Custom Properties ---------- */
:root {
    --font-main: 'Poppins', sans-serif;
    --font-arabic: 'Amiri', serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.35);
    --transition: 0.3s ease;
}

[data-theme="dark"] {
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-card: #1c2333;
    --bg-card-alt: #232b3e;
    --text-primary: #e6edf3;
    --text-secondary: #8b949e;
    --text-muted: #6e7681;
    --accent-navy: #1a237e;
    --accent-navy-light: #283593;
    --accent-gold: #ffd700;
    --accent-gold-dim: #b8960f;
    --border-color: #30363d;
    --glass-bg: rgba(28, 35, 51, 0.85);
    --glass-border: rgba(255, 215, 0, 0.1);
    --today-highlight: rgba(255, 215, 0, 0.12);
    --progress-track: #30363d;
    --progress-fill: linear-gradient(90deg, #ffd700, #ffab00);
    --btn-primary-bg: linear-gradient(135deg, #ffd700, #ffab00);
    --btn-primary-text: #1a237e;
    --btn-secondary-bg: rgba(255, 255, 255, 0.06);
    --btn-secondary-text: #e6edf3;
    --modal-backdrop: rgba(0, 0, 0, 0.7);
    --table-stripe: rgba(255, 255, 255, 0.02);
    --table-hover: rgba(255, 215, 0, 0.05);
    --scrollbar-thumb: #30363d;
    --scrollbar-track: #161b22;
}

[data-theme="light"] {
    --bg-primary: #f0f2f5;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-card-alt: #f8f9fa;
    --text-primary: #1a237e;
    --text-secondary: #555;
    --text-muted: #888;
    --accent-navy: #1a237e;
    --accent-navy-light: #283593;
    --accent-gold: #c9a800;
    --accent-gold-dim: #9e8400;
    --border-color: #ddd;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(26, 35, 126, 0.1);
    --today-highlight: rgba(26, 35, 126, 0.08);
    --progress-track: #ddd;
    --progress-fill: linear-gradient(90deg, #1a237e, #3949ab);
    --btn-primary-bg: linear-gradient(135deg, #1a237e, #3949ab);
    --btn-primary-text: #fff;
    --btn-secondary-bg: rgba(0, 0, 0, 0.05);
    --btn-secondary-text: #1a237e;
    --modal-backdrop: rgba(0, 0, 0, 0.4);
    --table-stripe: rgba(0, 0, 0, 0.02);
    --table-hover: rgba(26, 35, 126, 0.05);
    --scrollbar-thumb: #ccc;
    --scrollbar-track: #f0f2f5;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    transition: background var(--transition), color var(--transition);
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

body::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 4px;
}

/* ---------- Loading Overlay ---------- */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border-color);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-overlay p {
    margin-top: 18px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ---------- Header ---------- */
header {
    position: relative;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.ornament-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

.ornament-svg {
    display: block;
    width: 100%;
    height: 60px;
}

.header-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.app-title {
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
}

.crescent.lucide {
    width: 28px;
    height: 28px;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.method-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.method-selector select {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    font-family: var(--font-main);
    font-size: 0.82rem;
    cursor: pointer;
    transition: border-color var(--transition);
}

.method-selector select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* ---------- Buttons ---------- */
.btn-icon {
    background: var(--btn-secondary-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition);
}

.btn-icon:hover {
    background: var(--accent-gold);
    color: var(--accent-navy);
    border-color: var(--accent-gold);
    transform: translateY(-1px);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    box-shadow: 0 2px 12px rgba(255, 215, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

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

.btn-secondary:hover {
    background: var(--table-hover);
    transform: translateY(-1px);
}

/* ---------- Modal ---------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.modal.hidden {
    display: none;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: var(--modal-backdrop);
}

.modal-content {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    width: 90%;
    max-width: 460px;
    box-shadow: var(--shadow-lg);
    animation: fadeSlideUp 0.3s ease;
}

.modal-content h2 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--accent-gold);
}

.modal-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.modal-input-group {
    position: relative;
    margin-bottom: 18px;
}

.modal-input-group input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}

.modal-input-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.city-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
}

.city-suggestions.hidden {
    display: none;
}

.city-suggestion-item {
    padding: 10px 16px;
    font-size: 0.88rem;
    cursor: pointer;
    color: var(--text-primary);
    transition: background var(--transition);
}

.city-suggestion-item:hover {
    background: var(--table-hover);
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* ---------- Main Sections ---------- */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

.section {
    margin-bottom: 36px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}

.section-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.month-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
}

/* ---------- Today Card ---------- */
.today-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.today-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--progress-fill);
}

.today-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.date-masehi {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.date-hijriah {
    font-size: 0.95rem;
    color: var(--accent-gold);
    font-family: var(--font-arabic);
    margin-top: 2px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 500;
    background: var(--today-highlight);
    color: var(--accent-gold);
    border: 1px solid var(--glass-border);
}

/* Countdown */
.countdown-section {
    text-align: center;
    margin-bottom: 28px;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.countdown-timer {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-variant-numeric: tabular-nums;
    animation: pulse-glow 2s ease-in-out infinite;
    letter-spacing: 2px;
}

@keyframes pulse-glow {

    0%,
    100% {
        text-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
    }

    50% {
        text-shadow: 0 0 24px rgba(255, 215, 0, 0.4);
    }
}

/* Progress Bar */
.progress-section {
    margin-bottom: 28px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.progress-bar-track {
    position: relative;
    height: 10px;
    background: var(--progress-track);
    border-radius: 5px;
    overflow: visible;
}

.progress-bar-fill {
    height: 100%;
    border-radius: 5px;
    background: var(--progress-fill);
    transition: width 1s ease;
}

.progress-bar-marker {
    position: absolute;
    top: -4px;
    width: 18px;
    height: 18px;
    background: var(--accent-gold);
    border: 3px solid var(--bg-card);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
    transition: left 1s ease;
}

.progress-times {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Prayer Times Grid */
.prayer-times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.prayer-time-card {
    background: var(--bg-card-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 12px;
    text-align: center;
    transition: all var(--transition);
}

.prayer-time-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--accent-gold);
}

.prayer-time-card.active {
    border-color: var(--accent-gold);
    background: var(--today-highlight);
    box-shadow: 0 0 16px rgba(255, 215, 0, 0.1);
}

.prayer-icon {
    margin-bottom: 6px;
    display: flex;
    justify-content: center;
}

.prayer-icon .lucide {
    width: 28px;
    height: 28px;
}

.prayer-name {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.prayer-time {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

.today-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Calendar ---------- */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    padding: 8px;
}

.calendar-day-header {
    text-align: center;
    padding: 10px 4px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-cell {
    background: var(--bg-card-alt);
    border-radius: var(--radius-sm);
    padding: 8px 6px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: all var(--transition);
    cursor: default;
}

.calendar-cell:hover {
    background: var(--table-hover);
    transform: scale(1.02);
}

.calendar-cell.today {
    background: var(--today-highlight);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.15);
}

.calendar-cell.empty {
    background: transparent;
    min-height: auto;
}

.cal-date {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cal-hijri {
    font-size: 0.65rem;
    color: var(--accent-gold-dim);
    font-family: var(--font-arabic);
}

.cal-imsak,
.cal-maghrib {
    font-size: 0.65rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 3px;
}

/* ---------- 30-Day Table ---------- */
.table-wrapper {
    overflow-x: auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 3px;
}

#schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

#schedule-table th {
    background: var(--accent-navy);
    color: #fff;
    padding: 14px 16px;
    text-align: center;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: sticky;
    top: 0;
    z-index: 1;
}

#schedule-table td {
    padding: 12px 16px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    font-variant-numeric: tabular-nums;
    color: var(--text-primary);
    transition: background var(--transition);
}

#schedule-table tbody tr:nth-child(even) {
    background: var(--table-stripe);
}

#schedule-table tbody tr:hover {
    background: var(--table-hover);
}

#schedule-table tbody tr.today-row {
    background: var(--today-highlight);
    font-weight: 600;
}

#schedule-table tbody tr.today-row td:first-child {
    position: relative;
}

#schedule-table tbody tr.today-row td:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-gold);
}

/* ---------- Footer ---------- */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 24px;
    text-align: center;
}

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

footer p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.disclaimer {
    font-style: italic;
}

.copyright {
    margin-top: 12px;
}

/* ---------- Lucide Icons ---------- */
.lucide {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-sm {
    width: 18px;
    height: 18px;
}

.icon-xs {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

.inline-icon {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.text-red {
    stroke: #ef4444;
    fill: rgba(239, 68, 68, 0.2);
}

/* ---------- Idul Fitri Banner ---------- */
.idul-fitri-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.15), rgba(46, 204, 113, 0.1));
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    margin-bottom: 20px;
    animation: fadeSlideUp 0.5s ease;
}

.eid-icon.lucide {
    width: 32px;
    height: 32px;
    stroke: #2ecc71;
    fill: rgba(46, 204, 113, 0.15);
    flex-shrink: 0;
}

.eid-info {
    flex: 1;
}

.eid-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #2ecc71;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.eid-date {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.eid-countdown {
    font-size: 0.82rem;
    font-weight: 600;
    color: #2ecc71;
    white-space: nowrap;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(46, 204, 113, 0.12);
}

.eid-countdown.eid-today {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
    animation: pulse-glow 1.5s ease-in-out infinite;
}

.eid-countdown.eid-passed {
    color: var(--text-muted);
    background: rgba(128, 128, 128, 0.1);
}

/* Calendar Eid highlight */
.calendar-cell.eid-cell {
    background: rgba(46, 204, 113, 0.12);
    border: 2px solid rgba(46, 204, 113, 0.5);
    box-shadow: 0 0 12px rgba(46, 204, 113, 0.15);
}

.calendar-cell.eid-cell .cal-date::after {
    content: ' \2726';
    color: #2ecc71;
    font-size: 0.7rem;
}

/* ---------- Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.6s ease forwards;
}

.fade-in:nth-child(2) {
    animation-delay: 0.15s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-right {
        width: 100%;
        justify-content: space-between;
    }

    .today-card {
        padding: 20px 16px;
    }

    .countdown-timer {
        font-size: 2.2rem;
    }

    .prayer-times-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 8px;
    }

    .prayer-time-card {
        padding: 12px 8px;
    }

    .prayer-icon {
        font-size: 1.2rem;
    }

    .prayer-time {
        font-size: 1rem;
    }

    .calendar-cell {
        min-height: 60px;
        padding: 5px 3px;
    }

    .cal-date {
        font-size: 0.75rem;
    }

    .cal-hijri,
    .cal-imsak,
    .cal-maghrib {
        font-size: 0.55rem;
    }

    #schedule-table th,
    #schedule-table td {
        padding: 8px 6px;
        font-size: 0.78rem;
    }

    .section-header h2 {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    main {
        padding: 14px;
    }

    .app-title {
        font-size: 1.3rem;
    }

    .countdown-timer {
        font-size: 1.8rem;
    }

    .prayer-times-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }

    .modal-content {
        padding: 24px 18px;
    }

    .today-actions {
        flex-direction: column;
    }

    .today-actions .btn {
        width: 100%;
        justify-content: center;
    }

}

/* ---------- About Developer ---------- */
.dev-glass-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-card-alt));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    box-shadow: var(--shadow-md);
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
    overflow: hidden;
    margin-top: 18px;
}

.dev-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-gold);
}

.dev-author,
.dev-community {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dev-avatar {
    width: 50px;
    height: 50px;
    background: var(--today-highlight);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.dev-avatar .lucide {
    width: 26px;
    height: 26px;
}

.dev-details,
.comm-details {
    display: flex;
    flex-direction: column;
}

.dev-label,
.comm-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.dev-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.comm-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.dev-divider {
    width: 1px;
    height: 50px;
    background: var(--border-color);
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #5865F2;
    /* Discord Blurple */
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

.discord-icon {
    width: 20px;
    height: auto;
}

@media (max-width: 768px) {
    .dev-glass-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
    }

    .dev-divider {
        width: 100%;
        height: 1px;
    }

    .dev-community {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .btn-discord {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }
}