/* ZeelPlay - Common Styles (Minimal Base) */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #131313;
    color: #FFFFFF;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* App Container */
.app-container {
    position: relative;
    max-width: 412px;
    min-height: 917px;
    margin: 0 auto;
    background: #131313;
    padding-bottom: 80px;
}

/* ========== HEADER (Common across all pages) ========== */
.app-header {
    position: fixed;
    top: 16px;
    left: 50%;
    margin-left: calc(-206px + 22px);
    width: 177px;
    height: 58px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 10px;
    z-index: 100;
}

@media (max-width: 412px) {
    .app-header {
        left: 22px;
        margin-left: 0;
    }
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 33px;
    height: 33px;
    background: #FFFFFF;
    border-radius: 50px;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    color: #FFFFFF;
    white-space: nowrap;
}

/* ========== FOOTER (Common across all pages) ========== */
.bottom-nav {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 390px;
    max-width: calc(100% - 22px);
    height: 67px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 30px;
    z-index: 1000;
}

@media (max-width: 412px) {
    .bottom-nav {
        width: calc(100% - 22px);
    }
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    transition: all 0.2s;
}

.nav-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon svg {
    width: 25px;
    height: 25px;
}

.nav-label {
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 8px;
    line-height: 10px;
    text-align: center;
}

/* Active state - Featured */
.nav-item.active .nav-label {
    color: #FFDB11;
}

.nav-item.active .nav-icon svg path {
    fill: #FFDB11;
}

/* Inactive state */
.nav-item:not(.active) .nav-label {
    color: rgba(255, 255, 255, 0.5);
}

.nav-item:not(.active) .nav-icon svg path {
    fill: rgba(255, 255, 255, 0.5);
}

/* Common Utilities */
.text-muted {
    color: rgba(255, 255, 255, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-yellow {
    background: #FFDB11;
    color: #000;
}

.btn-yellow:hover {
    background: #FFC700;
}

.btn-secondary {
    background: #1F1F1F;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-success {
    background: #10B981;
    color: white;
}

.btn-full {
    display: block;
    width: 100%;
    margin-top: 8px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Status Messages */
.status-message {
    padding: 16px;
    border-radius: 12px;
    margin-top: 16px;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
}

.status-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border: 1px solid #10B981;
}

.status-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid #EF4444;
}

.status-message.info {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
    border: 1px solid #3B82F6;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: #1F1F1F;
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    font-size: 18px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.modal-body {
    padding: 20px;
}

/* Form Elements */
input[type="text"],
input[type="email"],
input[type="file"],
textarea,
select {
    width: 100%;
    padding: 12px;
    background: #1F1F1F;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #FFFFFF;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #FFDB11;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Space Grotesk', sans-serif;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #131313;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}
