/* Base Reset + Background */
body {
    margin: 0;
    padding: 0;
    background-color: rgb(14, 14, 14);
    color: white;
    font-family: "Fira Code", monospace;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('img/stars.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.back-tab {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 8px 12px;
    border-radius: 8px;
    z-index: 999;
    font-family: "Fira Code", monospace;
    font-size: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-tab a {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

.back-tab a:hover {
    color: #ad54ff;
}


/* Container */
.container {
    text-align: left;
    padding: 20px;
    max-width: 640px;
    width: 100%;
    border-radius: 10px;
}

/* Profile */
.profile {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(143, 143, 143, 0.233);
}

.profile-pic {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-right: 20px;
}

.profile-info h1 {
    font-size: 2em;
    margin: 0;
}

.badges {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.badge {
    font-size: 1.2em;
}

.subtitle {
    font-size: 1em;
    color: gray;
    margin: 5px 0;
}

.joined {
    font-size: 0.8em;
    color: lightgray;
    margin: 5px 0;
}

/* Access Buttons */
.get-access {
    margin-top: 30px;
    text-align: center;
}

.preview-button {
    font-family: "Fira Code", monospace;
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid rgba(143, 143, 143, 0.233);
    color: white;
    border-radius: 15px;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.25s, transform 0.15s ease;
    margin: 4px;
}

.preview-button:hover {
    background-color: #ad54ff;
    transform: scale(1.03);
}

.locked-preview-button {
    border-color: rgba(143, 143, 143, 0.1);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
    pointer-events: none;
    position: relative;
}

.locked-preview-button:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Features */
.features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}

.feature-card-link {
    text-decoration: none;
    color: inherit;
    width: calc(50% - 8px);
}

.feature-card {
    border-radius: 15px;
    padding: 10px;
    min-height: 120px;
    border: 2px solid rgba(143, 143, 143, 0.233);
    background-color: rgba(255, 255, 255, 0.02);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Feature Card Content */
.feature-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.feature-icon {
    height: 50px;
    width: 50px;
    border-radius: 15px;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
}

.feature-title {
    font-size: 1em;
    color: white;
    margin: 0;
    padding-top: 4px;
}

.feature-desc {
    font-size: 0.75em;
    color: white;
    margin-top: 5px;
    line-height: 1.2em;
}
