/* --- Global Styles & Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif; /* Clean, premium geometric font */
}

body {
    /* Slightly softer, elegant sand-to-ocean gradient */
    background: linear-gradient(135deg, #e0f2fe 0%, #f1f5f9 50%, #fefae0 100%);
    color: #1e293b; /* Sleek slate-gray color for a premium look */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 60px 20px;
}

/* --- Layout Grid --- */
.portfolio-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: start;
}

/* --- Left Column: Info --- */
.main-content {
    padding: 20px 10px;
}

/* Sleeker status tag */
.status-tag {
    background: #0284c7;
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.main-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 15px;
    color: #0f172a;
    letter-spacing: -1px;
}

/* Elegant, modern gradient */
.highlight {
    background: linear-gradient(45deg, #0284c7, #0d9488);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.5;
    font-family: 'Quicksand', sans-serif;
}

.about-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0f172a;
}

.about-section p {
    font-family: 'Quicksand', sans-serif;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* --- PORTFOLIO SHOWCASE GRID --- */
.portfolio-showcase {
    margin-bottom: 40px;
}

.portfolio-showcase h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0f172a;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

/* Sleek card design with subtle shadows */
.showcase-item {
    background: white;
    border: 2px solid #ffffff;
    border-radius: 16px; /* Toned down roundness */
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05); /* Softer gray shadow */
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column; 
    height: 100%;
}

.showcase-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.08);
}

.image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1; /* Keeps images beautifully square */
    overflow: hidden;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.item-info {
    padding: 16px;
    text-align: center;
    background: #ffffff;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    flex-grow: 1;
    border-top: 1px solid #f1f5f9;
}

.item-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
}

.item-info span {
    font-size: 0.8rem;
    color: #0284c7;
    font-weight: 600;
}

/* --- RATES & TOS INTERACTIVE ZONE --- */
.interactive-zone {
    margin-bottom: 20px;
}

.button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Keeps it clean on mobile screens */
    margin-bottom: 20px;
}

.action-btn-secondary {
    background: #0f172a; /* Clean dark-slate button */
    border: none;
    color: white;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn-secondary:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

.info-box {
    margin-top: 15px;
}

.pricing-card {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.pricing-card p {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #334155;
    line-height: 1.5;
}

.pricing-card p:last-child {
    margin-bottom: 0;
}

.hidden {
    display: none;
}

/* --- Right Column: Studio Profile Card --- */
.glass-card {
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 20px; /* Toned down rounding */
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 40px;
}

.avatar-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #0284c7;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
    background: #f1f5f9;
}

.glass-card h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #0f172a;
}

.glass-card .role {
    color: #64748b;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.divider {
    width: 100%;
    height: 1px;
    background: #f1f5f9;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
    justify-content: center;
}

.social-links a {
    color: #64748b;
    font-size: 1.5rem;
    transition: color 0.2s, transform 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.social-links a:hover {
    color: #0284c7;
    transform: translateY(-3px);
}

.social-links .roblox-img-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: invert(49%) sepia(8%) saturate(1008%) hue-rotate(178deg) brightness(92%) contrast(85%); /* Sleek gray-blue default */
    transition: filter 0.2s, transform 0.2s;
}

.social-links .roblox-img-link:hover img {
    filter: invert(36%) sepia(84%) saturate(1915%) hue-rotate(178deg) brightness(91%) contrast(101%); /* High-end blue on hover */
    transform: translateY(-3px);
}

/* Premium action button */
.cta-button {
    background: #0284c7;
    color: white;
    text-decoration: none;
    width: 100%;
    padding: 14px 0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
}

.cta-button:hover {
    background: #0369a1;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(2, 132, 199, 0.3);
}

/* --- Responsive Media Query --- */
@media (max-width: 850px) {
    .portfolio-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .glass-card {
        position: relative;
        top: 0;
    }
    .main-content {
        text-align: center;
    }
    .status-tag {
        margin: 0 auto 20px auto;
    }
}