:root {
    min-height: 100%;
    min-height: 100dvh;
    scroll-behavior: smooth;
}

body {
    background-image: linear-gradient(#11111b, #000);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    color: #cad3f5;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    margin-bottom: 7.5vw;
    overflow-x: hidden;
}

#main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8rem 1.5rem 5rem;
}

#features,
.content-section {
    width: min(100%, 72rem);
    margin: 0 auto;
    padding: 2rem 1.5rem 5.5rem;
}

.people-section {
    width: min(50%, 36rem);
    margin: 0 auto;
    padding: 2.0rem 1.5rem 1.5rem;
}

.home-grid,
.feature-grid,
.faq-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1.5rem;
}

.thanks-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
    gap: 1.5rem;
}

.people-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
    gap: 1.5rem;
}


.info-panel,
.about-panel,
.thanks-panel {
    background-color: rgba(138, 173, 244, 0.08);
    -webkit-backdrop-filter: blur(10.0px);
    backdrop-filter: blur(10.0px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 7.5rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.info-panel:hover,
.about-panel:hover,
.thanks-panel:hover {
    border-color: rgba(138, 173, 244, 0.3);
    transform: translateY(-2px);
}

.info-panel p {
    margin: 0;
    color: #a5adce;
}

.info-panel a {
    color: #c6a0f6;
    text-decoration: none;
}

.info-panel a:hover {
    text-decoration: underline;
}

.feature-meta {
    margin-top: 1.4rem;
    display: flex;
    justify-content: flex-end;
}

.status-tag {
    display: inline-flex;
    align-items: center;
    min-height: 1.0rem;
    padding: 0.25rem 1.0rem;
    border-radius: 999px;
    border: 1px solid currentColor;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.status-tag.available { color: #9de9b4; background: rgb(157, 233, 180, 0.12); }
.status-tag.beta { color: #8aadf4; background: rgba(138, 173, 244, 0.12); }
.status-tag.wip { color: #f5a97f; background: rgba(245, 169, 127, 0.12); }

.title {
    font-size: clamp(2.5rem, 10vw, 5.75rem);
    line-height: 0.95;
    margin-bottom: 0.5rem;
}

.thanks-panel h2,
.info-panel h2,
.about-panel h2,
#title-big,
.mauve-txt {
    margin-top: 0;
    background: -webkit-linear-gradient(180deg, #c6a0f6, #8aadf4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#title,
#macros-title,
#download-title {
    background: -webkit-linear-gradient(180deg, #ffffff, #8aadf4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-txt {
    font-size: clamp(1.15rem, 1.8vw, 1.6rem);
    line-height: 1.45;
    max-width: 60rem;
    margin: 1rem auto 0;
    color: #939ab7; 
}

.blue-txt { color: #8aadf4; }
.lavender-txt { color: #b7bdf8; }

.logo {
    width: 150px;
    margin-top: 0;
    box-shadow: 0 0 60px rgba(138, 173, 244, 0.3);
    border-radius: 25%;
}

.icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.macro-download-btn {
    margin-left: 15vw;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    position: relative;
    z-index: 1; 
    color: #e2e8f0;
}

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

.subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    position: relative;
}

#macro-search {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    color: #f8fafc;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#macro-search::placeholder {
    color: #64748b;
}

#macro-search:focus {
    border-color: #c6a0f6;
    box-shadow: 0 0 15px rgba(198, 160, 246, 0.2);
    background: rgba(30, 41, 59, 0.8);
}

.macro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.macro-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
}

.macro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(198, 160, 246, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-header h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.2;
}

.version-badge {
    background: rgba(148, 163, 184, 0.2);
    color: #cbd5e1;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 1rem;
}

.card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.meta-data p {
    margin: 0 0 0.4rem 0;
    font-size: 0.95rem;
    color: #94a3b8;
    display: flex;
    justify-content: space-between;
}

.meta-data span {
    color: #f1f5f9;
    font-weight: 500;
}

.description {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-style: italic;
    line-height: 1.5;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.75rem;
    border-radius: 8px;
    margin: 0;
}

.card-footer {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 23, 42, 0.4);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.icon-sm {
    width: 14px;
    height: 14px;
    opacity: 0.8;
}

.upvote { color: #8aadf4; }
.downvote { color: #ed8796; }

.download-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.link {
    color: #8ab4f8;/
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease;
}

.link:hover {
    color: #aecbfa;
    text-decoration: underline;
}


.profile-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.profile-header h2 {
    margin-top: 0;
    margin-bottom: 0;
}

.profile-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(138, 173, 244, 0.3);
}


.glass-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.countdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.countdown-heading {
    font-size: 1.2rem;
    color: #a5adce;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-timer {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 12px;
    min-width: 80px;
    border: 1px solid rgba(198, 160, 246, 0.2);
}

.time-value {
    font-size: 2.5rem;
    font-weight: bold;
    background: -webkit-linear-gradient(180deg, #c6a0f6, #8aadf4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.time-label {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-msg {
    font-size: 2rem;
    font-weight: bold;
    color: #a6da95; /* Catppuccin Green */
    text-shadow: 0 0 10px rgba(166, 218, 149, 0.5);
}

.divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.download-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.discord-text {
    font-size: 0.9rem;
    color: #a5adce;
    max-width: 80%;
    line-height: 1.5;
    margin: 0.5rem 0;
}