* { margin: 0; padding: 0; box-sizing: border-box; } html { font-size: 100%; } :root { --bg-primary: #FAFAFA; --bg-card: #FFFFFF; --text-primary: #1F2937; --text-secondary: #6B7280; --border: #E5D9F2; --gradient-start: #7C3AED; --gradient-end: #EC4899; --danger: #EF4444; --success: #10B981; --space-xs: 0.25rem; --space-sm: 0.5rem; --space-md: 1rem; --space-lg: 1.5rem; --space-xl: 2rem; --font-xs: 0.625rem; --font-sm: 0.75rem; --font-md: 0.875rem; --font-base: 1rem; --font-lg: 1.25rem; --font-xl: 1.5rem; --font-2xl: 2rem; --font-3xl: 2.5rem; --font-4xl: 3rem; } :root.dark { --bg-primary: #121212; --bg-card: #1E1E1E; --text-primary: #FFFFFF; --text-secondary: #9CA3AF; --border: #333333; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background: var(--bg-primary); color: var(--text-primary); font-size: var(--font-md); line-height: 1.5; } .screen { display: none; max-width: 31.25rem; margin: 0 auto; min-height: 100vh; background: var(--bg-primary); padding-bottom: 5rem; } .active { display: block; transition: all 0.3s ease; } .placeholder-content { display: flex; align-items: center; justify-content: center; height: 80vh; flex-direction: column; color: var(--text-secondary); text-align: center; padding: var(--space-md); } .placeholder-content h2 { margin-bottom: var(--space-sm); color: var(--text-primary); font-size: var(--font-xl); } .inactive { display: none; transition: all 0.3s ease;} .placeholder-content p { font-size: var(--font-md); } .bottom-nav { position: fixed; bottom: var(--space-sm); left: 50%; transform: translateX(-50%); width: calc(100% - var(--space-lg)); max-width: 28.125rem; background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(16px); border-radius: 2.5rem; display: none; justify-content: space-around; padding: var(--space-sm) var(--space-sm); z-index: 100; box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08); border: 0.5px solid rgba(255, 255, 255, 0.3); } :root.dark .bottom-nav { background: rgba(30, 30, 30, 0.96); border-color: rgba(255, 255, 255, 0.08); box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.3); } .nav-item { display: flex; flex-direction: column; align-items: center; gap: 0.1875rem; cursor: pointer; font-size: 1.375rem; color: var(--text-secondary); padding: 0.375rem 0.75rem; border-radius: 1.875rem; transition: all 0.1s ease; } .nav-item.active { color: var(--gradient-start); background: rgba(124, 58, 237, 0.12); box-shadow: 0 0 0.5rem rgba(124, 58, 237, 0.2); } .nav-item:active { transform: scale(0.95); } .nav-label { font-size: var(--font-xs); font-weight: 500; } .popup-message { position: fixed; bottom: 5rem; left: 50%; transform: translateX(-50%) translateY(6.25rem); background: #1F2937; color: white; padding: var(--space-sm) var(--space-lg); border-radius: 2.5rem; font-size: var(--font-sm); font-weight: 500; z-index: 1000; opacity: 0; transition: all 0.2s ease; pointer-events: none; white-space: nowrap; max-width: 85%; white-space: normal; text-align: center; } .popup-message.show { transform: translateX(-50%) translateY(0); opacity: 1; } .splash-container { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg-primary); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 1000; opacity: 1; transition: opacity 0.5s ease-out;} .splash-container.fade-out { opacity: 0;} .logo-section { text-align: center; margin-bottom: 3rem;} .splash-logo { font-size: 4rem; font-weight: 800; letter-spacing: -0.02em; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); background-clip: text; -webkit-background-clip: text; color: transparent; margin-bottom: 0.5rem;} .splash-tagline { font-size: 0.875rem; color: var(--text-secondary); letter-spacing: 0.5px;} .bars-section { display: flex; align-items: flex-end; justify-content: center; gap: 1.5rem; height: 6rem; margin-bottom: 3rem;} .bar-wrapper { display: flex; flex-direction: column; align-items: center; gap: 0.5rem;} .bar { width: 2rem; height: 4rem; background: rgba(124, 58, 237, 0.15); border-radius: 0.5rem 0.5rem 0 0; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end;} .bar-fill { width: 100%; height: 0%; background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end)); border-radius: 0.5rem 0.5rem 0 0; transition: height 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);} .bar-number { font-size: 0.75rem; color: var(--text-secondary); font-weight: 500;} .splash-footer { position: absolute; bottom: 1.5rem; left: 0; right: 0; text-align: center;} .copyright { font-size: 0.75rem; color: var(--text-secondary); letter-spacing: 0.3px;} .lg-container { max-width: 31.25rem; width: 100%; margin: 0 auto; background: var(--bg-card); border-radius: 2rem; overflow: hidden; border: 1px solid var(--border);} .lg-header { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); padding: 2rem 1.5rem; text-align: center;} .lg-header h1 { font-size: 3rem; font-weight: 800; letter-spacing: -0.02em; color: white; margin-bottom: 0.25rem;} .lg-header p { font-size: 0.875rem; color: rgba(255, 255, 255, 0.85);} .lg-form { padding: 2rem 1.5rem;} .lg-input-group { margin-bottom: 1.25rem;} .lg-label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.5rem;} .lg-input { width: 100%; padding: 0.875rem 1rem; border: 1.5px solid var(--border); border-radius: 1rem; font-size: 1rem; font-family: inherit; background: var(--bg-card); color: var(--text-primary); transition: all 0.2s; outline: none;} .lg-input:focus { border-color: var(--gradient-start); box-shadow: 0 0 0 0.125rem rgba(124, 58, 237, 0.1);} .lg-input.error { border-color: var(--danger);} .lg-password-wrapper { position: relative;} .lg-password-wrapper .lg-input { padding-right: 4rem;} .lg-password-toggle { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--gradient-start); font-size: 0.75rem; font-weight: 600; cursor: pointer; padding: 0.25rem 0.5rem;} .lg-password-meter { margin-top: 0.5rem; height: 0.25rem; background: var(--border); border-radius: 0.25rem; overflow: hidden;} .lg-meter-bar { width: 0%; height: 100%; border-radius: 0.25rem; transition: width 0.2s, background 0.2s;} .lg-meter-text { font-size: 0.625rem; color: var(--text-secondary); margin-top: 0.375rem; text-align: right;} .lg-school-selector { position: relative; cursor: pointer;} .lg-school-display { width: 100%; padding: 0.875rem 1rem; border: 1.5px solid var(--border); border-radius: 1rem; font-size: 1rem; background: var(--bg-card); color: var(--text-primary); display: flex; justify-content: space-between; align-items: center;} .lg-school-display span:first-child { color: var(--text-primary);} .lg-school-display span:last-child { color: var(--text-secondary); font-size: 0.75rem;} .lg-school-dropdown { position: absolute; top: 3.5rem; left: 0; right: 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: 1rem; box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.1); z-index: 10; display: none; overflow: hidden; max-height: 18rem; flex-direction: column;} .lg-school-dropdown.show { display: flex;} .lg-school-search { width: 100%; padding: 0.75rem 1rem; border: none; border-bottom: 1px solid var(--border); font-size: 0.875rem; outline: none; background: var(--bg-card); color: var(--text-primary);} .lg-school-list { overflow-y: auto; max-height: 14rem;} .lg-school-option { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); cursor: pointer; transition: background 0.1s; color: var(--text-primary);} .lg-school-option:last-child { border-bottom: none;} .lg-school-option:hover { background: rgba(124, 58, 237, 0.05);} .lg-school-option.selected { background: rgba(124, 58, 237, 0.1); color: var(--gradient-start); font-weight: 500;} .lg-no-results { padding: 1rem; text-align: center; color: var(--text-secondary); font-size: 0.875rem;} .lg-button-group { display: flex; gap: 0.75rem; margin: 1.5rem 0 1rem;} .lg-btn { flex: 1; padding: 0.875rem 0; border-radius: 2.5rem; font-weight: 700; font-size: 0.875rem; cursor: pointer; transition: all 0.2s; text-align: center; border: none; font-family: inherit;} .lg-btn-signup { background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); color: white; box-shadow: 0 0.25rem 0.75rem rgba(124, 58, 237, 0.3);} .lg-btn-signup:active { transform: scale(0.98);} .lg-btn-login { background: transparent; color: var(--gradient-start); border: 1.5px solid var(--gradient-start);} .lg-btn-login:active { background: rgba(124, 58, 237, 0.05);} .lg-or-divider { display: flex; align-items: center; gap: 0.75rem; margin: 1rem 0;} .lg-or-line { flex: 1; height: 1px; background: var(--border);} .lg-or-text { font-size: 0.75rem; color: var(--text-secondary);} .lg-forgot-link { text-align: center; margin-top: 1rem;} .lg-forgot-link a { color: var(--gradient-start); font-size: 0.75rem; text-decoration: none; font-weight: 500;} .lg-footer { text-align: center; padding: 1rem; border-top: 1px solid var(--border); background: var(--bg-primary);} .lg-footer p { font-size: 0.625rem; color: var(--text-secondary);} .ps-container { max-width: 31.25rem; width: 100%; margin: 0 auto; background: var(--bg-card); border-radius: 2rem; overflow: hidden; border: 1px solid var(--border);} .ps-header { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); padding: 2rem 1.5rem; text-align: center;} .ps-header h1 { font-size: 2rem; font-weight: 700; color: white; margin-bottom: 0.25rem;} .ps-header p { font-size: 0.75rem; color: rgba(255, 255, 255, 0.85);} .ps-progress { height: 0.25rem; background: var(--border); width: 100%;} .ps-progress-fill { width: 75%; height: 100%; background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));} .ps-content { padding: 2rem 1.5rem;} .ps-avatar-section { display: flex; flex-direction: column; align-items: center; margin-bottom: 2rem;} .ps-avatar-ring { width: 7.5rem; height: 7.5rem; border-radius: 50%; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); display: flex; align-items: center; justify-content: center; cursor: pointer;} .ps-avatar-ring:active { transform: scale(0.95);} .ps-avatar-inner { width: 6.75rem; height: 6.75rem; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; overflow: hidden;} .ps-avatar-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover;} .ps-avatar-placeholder { font-size: 3rem; color: var(--gradient-start);} .ps-change-photo { margin-top: 0.75rem; color: var(--gradient-start); font-size: 0.75rem; font-weight: 500; cursor: pointer;} .ps-input-group { margin-bottom: 1.5rem;} .ps-label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.5rem;} .ps-input { width: 100%; padding: 0.875rem 1rem; border: 1.5px solid var(--border); border-radius: 1rem; font-size: 1rem; font-family: inherit; background: var(--bg-card); color: var(--text-primary); outline: none;} .ps-input:focus { border-color: var(--gradient-start);} .ps-input.error { border-color: var(--danger);} .ps-username-wrapper { position: relative;} .ps-username-status { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); font-size: 1rem;} .ps-error-msg { font-size: 0.625rem; color: var(--danger); margin-top: 0.375rem; display: none;} .ps-error-msg.show { display: block;} .ps-success-msg { font-size: 0.625rem; color: var(--success); margin-top: 0.375rem; display: none;} .ps-success-msg.show { display: block;} .ps-username-preview { font-size: 0.625rem; color: var(--text-secondary); margin-top: 0.375rem;} .ps-textarea { resize: none; min-height: 5rem;} .ps-school-info { background: rgba(124, 58, 237, 0.1); border-radius: 1rem; padding: 0.875rem 1rem; display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem;} .ps-school-label { font-size: 0.75rem; color: var(--text-secondary);} .ps-school-value { font-weight: 700; color: var(--gradient-start); background: white; padding: 0.25rem 0.75rem; border-radius: 1.25rem; font-size: 0.75rem;} .ps-done-btn { width: 100%; background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); border: none; padding: 1rem; border-radius: 2.5rem; color: white; font-weight: 700; font-size: 1rem; cursor: pointer; margin-top: 1rem;} .ps-done-btn:active { transform: scale(0.98);} .ps-done-btn.disabled { opacity: 0.5; transform: none; cursor: not-allowed;} .ps-skip-link { text-align: center; margin-top: 1.25rem;} .ps-skip-link a { color: var(--text-secondary); font-size: 0.75rem; text-decoration: none;} #ps-avatar-input { display: none;} #hs-screen { max-width: 31.25rem; margin: 0 auto; min-height: 100vh; background: var(--bg-primary); padding-bottom: 5rem; position: relative;}#hs-top { background: var(--bg-card); border-bottom: 0.5px solid var(--border); padding: 0.5rem 0.75rem; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100;}.hs-top-left { flex: 1; text-align: left;}#hs-logo { font-size: 1.75rem; font-weight: 800; font-style: italic; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); background-clip: text; -webkit-background-clip: text; color: transparent; margin: 0;}.hs-top-middle { flex: 2; text-align: center;}#hs-timer { font-size: 1.125rem; font-weight: 700; font-family: monospace; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); background-clip: text; -webkit-background-clip: text; color: transparent; cursor: pointer;}.hs-top-right { flex: 1; display: flex; justify-content: flex-end; gap: 1rem; align-items: center;}.hs-icon { font-size: 1.5rem; cursor: pointer; position: relative;}.hs-badge { position: absolute; top: -0.375rem; right: -0.625rem; background: var(--danger); color: white; font-size: 0.625rem; font-weight: 600; padding: 0.125rem 0.375rem; border-radius: 1.25rem; min-width: 1.125rem; text-align: center;}#hs-live-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0); z-index: 199; display: none; transition: all 0.8s;}#hs-live-modal.visible { display: block; opacity: 1;}#hs-live-board { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(1rem); border-bottom: 1px solid var(--border); transition: all 0.3s ease; overflow: hidden; max-height: 0; opacity: 0; padding: 0;}#hs-live-board.visible { max-height: 18.75rem; opacity: 1; padding: 0.75rem;}#hs-latest-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem;}#hs-title-name { font-size: 1rem; font-weight: 700; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); background-clip: text; -webkit-background-clip: text; color: transparent; cursor: pointer;}#hs-live-timer { font-size: 0.875rem; font-weight: 600; font-family: monospace; color: var(--text-secondary);}#hs-live-display { display: flex; flex-direction: row; justify-content: space-around; gap: 0.5rem;}.hs-position { flex: 1; text-align: center;}.hs-position-name { font-size: 0.75rem; font-weight: 600; margin-bottom: 0.375rem;}.hs-parent-avatar { height: 3.75rem; width: 3.75rem; margin: 0 auto;}.hs-parent-outer { height: 100%; width: 100%; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));}.hs-parent-inner { border: 2px solid white; height: 85%; width: 85%; border-radius: 50%; display: flex; justify-content: center; align-items: center; background: white; overflow: hidden;}.hs-avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover;}.hs-team { background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); color: white; font-size: 0.625rem; font-weight: bold; padding: 0.125rem 0.5rem; border-radius: 1.25rem; display: inline-block; margin-top: 0.375rem;}.hs-post { background: var(--bg-card); margin-bottom: 0.5rem;}.hs-post-info { display: flex; align-items: center; padding: 0.625rem 0.75rem; gap: 0.625rem;}.hs-mini-avatar { height: 2.625rem; width: 2.625rem;}.hs-post-center { flex: 1;}.hs-post-center p:first-child { font-weight: 700; font-size: 0.875rem;}.hs-post-center p:last-child { font-size: 0.6875rem; color: var(--gradient-start); font-weight: 500;}.hs-post-time { font-size: 0.6875rem; color: var(--text-secondary);}.hs-post-area { position: relative; width: 100%; aspect- ratio: 1 / 1;}.hs-img-holder { width: 100%; hei ght: 100%; height: auto;}.hs-post-img { width: 100%; hei ght: 100%; height: auto; object-fit: cover;}.hs-stats-area { position: absolute; bottom: 1rem; right: 0.75rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; background: rgba(0,0,0,0.5); padding: 0.5rem 0.75rem; border-radius: 1.875rem; backdrop-filter: blur(0.25rem);}.hs-stats-area p { color: white; font-size: 0.875rem; font-weight: 600;}.hs-actions { display: flex; padding: 0.5rem 0.75rem; gap: 1.25rem; border -top: 1px solid #F3F4F6;}.hs-action-btn { display: flex; align-items: center; gap: 0.375rem; font-size: 1.375rem; cursor: pointer;}.hs-action-btn.liked { color: var(--gradient-end);}.hs-action-count { font-size: 0.875rem; font-weight: 500; color: var(--text-secondary);}.hs-caption { padding: 0 0.75rem 0.5rem; font-size: 0.875rem;}.hs-caption strong { font-weight: 700; margin-right: 0.375rem;}.hs-comment-section { padding: 0 0.75rem 0.75rem; font-size: 0.8125rem; color: var(--text-secondary); cursor: pointer;}.hs-comments-modal { position: fixed; bottom: 0; left: 0; right: 0; max-width: 31.25rem; margin: 0 auto; background: var(--bg-card); border-radius: 1.5rem 1.5rem 0 0; z-index: 200; transform: translateY(100%); transition: transform 0.3s ease; max-height: 70vh; display: flex; flex-direction: column;}.hs-comments-modal.show { transform: translateY(0);}.hs-comments-header { padding: 1rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center;}.hs-comments-list { flex: 1; overflow-y: auto; padding: 0.75rem;}.hs-comment-item { display: flex; gap: 0.625rem; margin-bottom: 1rem;}.hs-comment-avatar { width: 2.25rem; height: 2.25rem; border-radius: 50%; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); display: flex; align-items: center; justify-content: center;}.hs-comment-inner { width: 2rem; height: 2rem; border-radius: 50%; background: white; overflow: hidden;}.hs-comment-content { flex: 1;}.hs-comment-username { font-weight: 700; font-size: 0.8125rem;}.hs-comment-text { font-size: 0.8125rem; margin-top: 0.125rem;}.hs-comment-time { font-size: 0.625rem; color: var(--text-secondary); margin-top: 0.25rem;}.hs-comment-input-area { display: flex; padding: 0.75rem; border-top: 1px solid var(--border); gap: 0.625rem;}.hs-comment-input { flex: 1; border: 1px solid var(--border); border-radius: 1.875rem; padding: 0.625rem 1rem; outline: none; font-family: inherit; background: var(--bg-card); color: var(--text-primary);}.hs-comment-submit { background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); border: none; padding: 0 1.25rem; border-radius: 1.875rem; color: white; font-weight: 600; cursor: pointer;}.hs-modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 199; display: none;}.hs-modal-overlay.show { display: block;}#hs-bottom-area { position: fixed; bottom: 0; left: 0; right: 0; max-width: 31.25rem; margin: 0 auto; display: flex; justify-content: center; padding: 0.5rem 1rem; background: transparent;}#hs-bottom-nav { display: flex; flex-direction: row; justify-content: space-between; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(0.625rem); border-radius: 2.5rem; padding: 0.375rem 1rem; width: 90%; box-shadow: 0 0.125rem 0.75rem rgba(0,0,0,0.1);}.hs-bottom-btn { flex: 1; display: flex; justify-content: center; align-items: center; padding: 0.5rem; cursor: pointer; border-radius: 1.875rem; transition: all 0.1s;}.hs-bottom-btn.active { background: linear-gradient(90deg, rgba(124,58,237,0.12), rgba(236,72,153,0.12));}.hs-bottom-icon { width: 1.625rem; height: 1.625rem;}#hs-title-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); z-index: 300; display: none; align-items: center; justify-content: center;}#hs-title-modal.show { display: flex;}.hs-title-card { background: var(--bg-card); border-radius: 1.5rem; width: 85%; max-width: 20rem; overflow: hidden;}.hs-title-header { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); padding: 1rem; text-align: center; color: white; font-weight: 600;}.hs-title-option { padding: 0.875rem 1rem; border-bottom: 1px solid var(--border); cursor: pointer; text-align: center; color: var(--text-primary);}.hs-title-option:active { background: rgba(124,58,237,0.05);}.hs-title-close { padding: 0.875rem; text-align: center; border-top: 1px solid var(--border); cursor: pointer; color: var(--gradient-start); font-weight: 500;}@keyframes hsPopupFade { 0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); } 20% { opacity: 1; transform: translate(-50%, -50%) scale(1); } 80% { opacity: 1; transform: translate(-50%, -50%) scale(1); } 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }}@keyframes hsHeartFloat { 0% { opacity: 1; transform: translateY(0) scale(1); } 100% { opacity: 0; transform: translateY(-5rem) scale(1.5); }}.ap-container { max-width: 31.25rem; margin: 0 auto; min-height: 100vh; background: var(--bg-primary); display: flex; flex-direction: column;}.ap-header { background: var(--bg-card); border-bottom: 1px solid var(--border); padding: 0.75rem 1rem; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 10;}.ap-cancel-btn { background: none; border: none; font-size: 1rem; color: var(--gradient-start); font-weight: 500; padding: 0.5rem 0.75rem; cursor: pointer;}.ap-header-title { font-size: 1.125rem; font-weight: 600; background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); background-clip: text; -webkit-background-clip: text; color: transparent;}.ap-share-btn { background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); border: none; padding: 0.5rem 1.25rem; border-radius: 1.5625rem; color: white; font-weight: 600; font-size: 0.875rem; cursor: pointer; opacity: 0.6;}.ap-share-btn.active { opacity: 1;}.ap-content { flex: 1; padding: 1.25rem;}.ap-media-preview { background: #FEFCE8; border-radius: 1rem; border: 1px dashed var(--border); min-height: 18.75rem; display: flex; flex-direction: column; align-items: center; justify-content: center; margin-bottom: 1.25rem; cursor: pointer; transition: all 0.2s; overflow: hidden; position: relative;}.ap-media-preview:hover { border-color: var(--gradient-start); background: #FEFCE8;}.ap-upload-placeholder { text-align: center; padding: 2.5rem;}.ap-upload-icon { width: 3.75rem; height: 3.75rem; background: linear-gradient(90deg, rgba(124,58,237,0.12), rgba(236,72,153,0.12)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.75rem;}.ap-upload-text { color: var(--text-secondary); font-size: 0.875rem;}.ap-upload-sub { color: #9CA3AF; font-size: 0.75rem; margin-top: 0.5rem;}.ap-preview-image { width: 100%; max-height: 21.875rem; object-fit: contain; background: #1a1a1a;}.ap-remove-media { position: absolute; top: 0.75rem; right: 0.75rem; background: rgba(0,0,0,0.6); color: white; border: none; border-radius: 50%; width: 2rem; height: 2rem; font-size: 1.125rem; cursor: pointer; backdrop-filter: blur(4px); z-index: 10;}.ap-edit-toolbar { background: var(--bg-card); border-radius: 1rem; border: 1px solid var(--border); padding: 0.75rem 1rem; margin-bottom: 1.25rem; display: flex; gap: 0.75rem; flex-wrap: wrap;}.ap-edit-btn { background: #F3F4F6; border: none; padding: 0.625rem 1.25rem; border-radius: 1.875rem; font-size: 0.875rem; font-weight: 500; color: #4B5563; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 0.5rem;}.ap-edit-btn.active { background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); color: white;}.ap-caption-section { background: var(--bg-card); border-radius: 1rem; border: 1px solid var(--border); margin-bottom: 1.25rem; overflow: hidden;}.ap-caption-input { width: 100%; padding: 1rem; border: none; font-size: 0.9375rem; font-family: inherit; resize: none; outline: none; min-height: 6.25rem; background: var(--bg-card); color: var(--text-primary);}.ap-caption-input:focus { background: #FEFCE8;}.ap-char-counter { text-align: right; padding: 0.5rem 0.75rem 0.75rem; font-size: 0.6875rem; color: var(--text-secondary); border-top: 1px solid #F3F4F6;}.ap-location-section { background: var(--bg-card); border-radius: 1rem; border: 1px solid var(--border); padding: 1rem; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.75rem; cursor: pointer;}.ap-location-section:active { transform: scale(0.98);}.ap-location-icon { font-size: 1.375rem;}.ap-location-text { flex: 1; color: var(--text-secondary); font-size: 0.875rem;}.ap-location-arrow { color: #9CA3AF; font-size: 1rem;}.ap-school-section { background: var(--bg-card); border-radius: 1rem; border: 1px solid var(--border); padding: 1rem; display: flex; align-items: center; justify-content: space-between;}.ap-school-label { display: flex; align-items: center; gap: 0.75rem;}.ap-school-icon { width: 2.5rem; height: 2.5rem; background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold;}.ap-school-info { display: flex; flex-direction: column;}.ap-school-title { font-size: 0.75rem; color: var(--text-secondary);}.ap-school-name { font-weight: 700; color: var(--text-primary);}.ap-popup-message { position: fixed; bottom: 5rem; left: 50%; transform: translateX(-50%) translateY(6.25rem); background: #1F2937; color: white; padding: 0.5rem 1rem; border-radius: 2rem; font-size: 0.75rem; font-weight: 500; z-index: 1000; opacity: 0; transition: all 0.2s; pointer-events: none; white-space: nowrap;}.ap-popup-message.show { transform: translateX(-50%) translateY(0); opacity: 1;}.pr-container { max-width: 31.25rem; margin: 0 auto; min-height: 100vh; background: var(--bg-primary); padding-bottom: 5rem;}.pr-header { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; background: var(--bg-card); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10;}.pr-back-btn { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--gradient-start); padding: 0.5rem;}.pr-title { font-size: 1.125rem; font-weight: 600; background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); background-clip: text; -webkit-background-clip: text; color: transparent;}.pr-menu-btn { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--gradient-start); padding: 0.5rem;}.pr-refresh-indicator { text-align: center; padding: 0.625rem; color: var(--text-secondary); font-size: 0.75rem; background: var(--bg-primary);}.pr-profile-info { padding: 1.25rem 1rem; display: flex; gap: 1.25rem; border-bottom: 1px solid var(--border); background: var(--bg-card);}.pr-avatar-section { display: flex; flex-direction: column; align-items: center; gap: 0.5rem;}.pr-story-ring { width: 5.625rem; height: 5.625rem; border-radius: 50%; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end), #A855F7, #D946EF); display: flex; align-items: center; justify-content: center;}.pr-avatar-inner { width: 5rem; height: 5rem; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; overflow: hidden;}.pr-avatar-img { width: 4.625rem; height: 4.625rem; border-radius: 50%; object-fit: cover;}.pr-stats { flex: 1; display: flex; justify-content: space-around; align-items: center;}.pr-stat-item { text-align: center; cursor: pointer;}.pr-stat-number { font-size: 1.25rem; font-weight: 800; color: var(--text-primary);}.pr-stat-label { font-size: 0.75rem; color: var(--text-secondary);}.pr-bio-section { padding: 1rem; background: var(--bg-card); border-bottom: 1px solid var(--border);}.pr-display-name { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem;}.pr-username { font-size: 0.8125rem; color: var(--text-secondary); margin-bottom: 0.5rem;}.pr-bio-text { font-size: 0.875rem; color: var(--text-primary); margin-bottom: 0.75rem; line-height: 1.4;}.pr-school-badge { display: inline-flex; align-items: center; gap: 0.375rem; background: #F5F3FF; padding: 0.375rem 0.75rem; border-radius: 1.25rem; font-size: 0.75rem; font-weight: 500; color: var(--gradient-start);}.pr-titles-section { background: var(--bg-card); margin-top: 0.5rem; padding: 1rem; border-bottom: 1px solid var(--border);}.pr-titles-header { font-size: 0.875rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.75rem;}.pr-titles-grid { display: flex; flex-wrap: wrap; gap: 0.75rem;}.pr-title-badge { background: #FEFCE8; border: 1px solid #FDE047; border-radius: 1.875rem; padding: 0.5rem 1rem; display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer;}.pr-title-badge:active { transform: scale(0.96);}.pr-title-name { font-size: 0.8125rem; font-weight: 600; color: var(--text-primary);}.pr-star-badge { background: var(--warning); border-radius: 1.875rem; padding: 0.125rem 0.5rem; font-size: 0.75rem; font-weight: 700; color: #1F2937; display: inline-flex; align-items: center; gap: 0.25rem;}.pr-empty-titles { color: var(--text-secondary); font-size: 0.8125rem; text-align: center; padding: 1.25rem;}.pr-tabs { display: flex; padding: 0.75rem 1rem; gap: 1.5rem; border-bottom: 1px solid var(--border); background: var(--bg-card);}.pr-tab { font-size: 0.875rem; font-weight: 600; color: var(--text-secondary); cursor: pointer; padding-bottom: 0.5rem; position: relative;}.pr-tab.active { color: var(--gradient-start);}.pr-tab.active::after { content: ''; position: absolute; bottom: -0.0625rem; left: 0; right: 0; height: 0.125rem; background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); border-radius: 0.125rem;}.pr-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.125rem; background: var(--bg-primary);}.pr-grid-post { aspect-ratio: 1 / 1; background: #F3F4F6; cursor: pointer; position: relative;}.pr-grid-post img { width: 100%; height: 100%; object-fit: cover;}.pr-empty-posts { text-align: center; padding: 3.75rem 1.25rem; color: var(--text-secondary);}.pr-modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(0.25rem); display: flex; align-items: center; justify-content: center; z-index: 1000; visibility: hidden; opacity: 0; transition: all 0.2s;}.pr-modal-overlay.show { visibility: visible; opacity: 1;}.pr-settings-modal { background: var(--bg-card); border-radius: 1.75rem; width: 85%; max-width: 20rem; overflow: hidden;}.pr-settings-option { padding: 1.125rem 1.25rem; text-align: center; border-bottom: 1px solid #F3F4F6; cursor: pointer; font-weight: 500;}.pr-settings-option:active { background: #F5F3FF;}.pr-settings-option.danger { color: var(--danger);}.pr-settings-option:last-child { border-bottom: none;}.pr-competition-modal { background: var(--bg-card); border-radius: 2rem; width: 85%; max-width: 21.25rem; overflow: hidden;}.pr-competition-header { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); padding: 1.25rem; text-align: center; color: white;}.pr-competition-rank { background: #FEF3C7; color: #D97706; padding: 0.25rem 0.75rem; border-radius: 1.25rem; font-size: 0.75rem; font-weight: 600; display: inline-block;}.pr-competition-body { padding: 1.25rem;}.pr-competition-stat { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid #F3F4F6;}.pr-competition-label { color: var(--text-secondary); font-size: 0.875rem;}.pr-competition-value { font-weight: 700; color: var(--text-primary);}.pr-close-btn { background: #F3F4F6; border: none; padding: 0.875rem; margin: 0 1.25rem 1.25rem 1.25rem; border-radius: 2.5rem; font-weight: 600; cursor: pointer;}.pr-title-detail-modal { background: var(--bg-card); border-radius: 2rem; width: 85%; max-width: 21.25rem; max-height: 70vh; overflow: hidden; display: flex; flex-direction: column;}.pr-title-detail-header { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); padding: 1.25rem; text-align: center; color: white;}.pr-title-detail-body { padding: 1.25rem; overflow-y: auto;}.pr-season-item { padding: 0.75rem 0; border-bottom: 1px solid #F3F4F6; display: flex; justify-content: space-between; align-items: center;}.pr-season-info { flex: 1;}.pr-season-name { font-weight: 600; font-size: 0.875rem;}.pr-season-date { font-size: 0.6875rem; color: var(--text-secondary);}.pr-season-rank { font-weight: 700; font-size: 1rem;}.pr-season-rank.champion { color: var(--warning);}.pr-post-detail-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg-card); z-index: 1001; display: none; flex-direction: column; overflow-y: auto;}.pr-post-detail-modal.show { display: flex;}.pr-post-detail-header { position: sticky; top: 0; background: var(--bg-card); padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 1rem;}.pr-post-detail-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--gradient-start);}.pr-post-detail-image { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #1a1a1a;}.pr-post-detail-actions { display: flex; padding: 0.75rem 1rem; gap: 1.25rem; border-top: 1px solid #F3F4F6;}.pr-detail-action { display: flex; align-items: center; gap: 0.375rem; font-size: 1.375rem; cursor: pointer;}.pr-detail-action.liked { color: var(--gradient-end);}.pr-post-detail-caption { padding: 0 1rem 0.75rem; font-size: 0.875rem;}.pr-post-detail-caption strong { font-weight: 700; margin-right: 0.375rem;}.pr-loading { display: inline-block; width: 1.25rem; height: 1.25rem; border: 2px solid var(--border); border-top-color: var(--gradient-start); border-radius: 50%; animation: pr-spin 0.6s linear infinite;}@keyframes pr-spin { to { transform: rotate(360deg); }}.ld-container { max-width: 31.25rem; margin: 0 auto; min-height: 100vh; background: var(--bg-primary); padding-bottom: 5rem;}.ld-header { display: flex; align-items: center; padding: 1rem; background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(0.625rem); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10;}.ld-back-btn { background: none; border: none; font-size: 1.5rem; cursor: pointer; padding: 0.5rem 0.5rem 0.5rem 0; color: var(--gradient-start); font-weight: bold;}.ld-title { flex: 1; text-align: center; font-size: 1.25rem; font-weight: 700; background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); background-clip: text; -webkit-background-clip: text; color: transparent;}.ld-refresh-btn { background: none; border: none; font-size: 1.25rem; cursor: pointer; padding: 0.5rem; color: var(--gradient-start);}.ld-ptr-indicator { text-align: center; padding: 0.625rem; color: var(--text-secondary); font-size: 0.75rem; background: var(--bg-primary);}.ld-season-banner { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); margin: 0.75rem 1rem; border-radius: 1.25rem; padding: 0.75rem 1rem; display: flex; justify-content: space-between; align-items: center;}.ld-season-info { color: white;}.ld-season-label { font-size: 0.75rem; opacity: 0.9;}.ld-season-date { font-size: 0.875rem; font-weight: 700;}.ld-season-countdown { background: rgba(255,255,255,0.2); padding: 0.375rem 0.75rem; border-radius: 1.875rem; font-size: 0.8125rem; font-weight: 600; color: white;}.ld-tabs { display: flex; padding: 0.5rem 1rem; gap: 1rem; border-bottom: 1px solid var(--border); background: var(--bg-card);}.ld-tab { flex: 1; text-align: center; padding: 0.75rem; font-size: 1rem; font-weight: 600; color: var(--text-secondary); cursor: pointer; border-radius: 2rem; transition: all 0.2s;}.ld-tab.active { background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); color: white;}.ld-category { margin: 1rem; background: var(--bg-card); border-radius: 1.5rem; border: 1px solid var(--border); overflow: hidden;}.ld-category-header { padding: 1rem; background: linear-gradient(135deg, rgba(124,58,237,0.06), rgba(236,72,153,0.06)); border-bottom: 1px solid var(--border);}.ld-category-name { font-size: 1.125rem; font-weight: 700; background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); background-clip: text; -webkit-background-clip: text; color: transparent;}.ld-category-sub { font-size: 0.75rem; color: var(--text-secondary); margin-top: 0.25rem;}.ld-rank-item { display: flex; align-items: center; padding: 0.75rem 1rem; border-bottom: 1px solid #F3F4F6; gap: 0.75rem;}.ld-rank-item.ld-highlight { background: #FEF3C7; border-left: 0.1875rem solid var(--warning);}.ld-rank-number { width: 2.25rem; font-size: 1rem; font-weight: 800; text-align: center;}.ld-rank-1 .ld-rank-number { color: #FFD700; }.ld-rank-2 .ld-rank-number { color: #C0C0C0; }.ld-rank-3 .ld-rank-number { color: #CD7F32; }.ld-rank-avatar { width: 3rem; height: 3rem; border-radius: 50%; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); display: flex; align-items: center; justify-content: center; flex-shrink: 0;}.ld-rank-avatar-inner { width: 2.625rem; height: 2.625rem; border-radius: 50%; background: white; overflow: hidden;}.ld-rank-avatar-img { width: 100%; height: 100%; object-fit: cover;}.ld-rank-info { flex: 1;}.ld-rank-name { font-weight: 700; font-size: 0.9375rem; color: var(--text-primary);}.ld-you-badge { background: var(--warning); color: #1F2937; font-size: 0.625rem; font-weight: 600; padding: 0.125rem 0.5rem; border-radius: 1.25rem; margin-left: 0.375rem;}.ld-rank-school { font-size: 0.6875rem; color: var(--gradient-start); font-weight: 500;}.ld-rank-stats { font-size: 0.8125rem; font-weight: 600; color: var(--gradient-end);}.ld-school-item { display: flex; align-items: center; padding: 0.75rem 1rem; border-bottom: 1px solid #F3F4F6; gap: 0.75rem;}.ld-school-item.ld-highlight { background: #FEF3C7; border-left: 0.1875rem solid var(--warning);}.ld-school-badge { width: 3rem; height: 3rem; border-radius: 1rem; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; flex-shrink: 0;}.ld-school-info { flex: 1;}.ld-school-name { font-weight: 700; font-size: 1rem;}.ld-school-points { font-size: 0.75rem; color: var(--text-secondary);}.ld-school-score { font-weight: 800; color: var(--gradient-start);}.ld-see-more { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem; background: #F5F3FF; cursor: pointer; border-top: 1px solid var(--border);}.ld-see-more:active { background: #EDE9FE;}.ld-full-list { display: none; border-top: 1px solid var(--border);}.ld-full-list.ld-show { display: block;}.ld-full-item { display: flex; align-items: center; padding: 0.625rem 1rem; border-bottom: 1px solid #F3F4F6; gap: 0.75rem; background: #FEFEFE;}.ld-full-item.ld-highlight { background: #FEF3C7;}.ld-full-number { width: 2rem; font-size: 0.875rem; font-weight: 600; color: #9CA3AF;}.ld-full-name { flex: 1; font-size: 0.875rem; font-weight: 500;}.ld-full-stats { font-size: 0.75rem; font-weight: 600; color: var(--gradient-end);}.ld-empty-rank { padding: 1.25rem; text-align: center; color: var(--text-secondary); font-size: 0.8125rem; background: var(--bg-card);}.ld-last-updated { text-align: center; font-size: 0.625rem; color: var(--text-secondary); padding: 0.5rem;}.ld-skeleton { background: #E5E7EB; animation: ld-pulse 1s infinite;}@keyframes ld-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; }}.ld-skeleton-row { display: flex; align-items: center; padding: 0.75rem 1rem; gap: 0.75rem;}.ld-skeleton-avatar { width: 3rem; height: 3rem; border-radius: 50%; background: #E5E7EB;}.ld-skeleton-line { height: 0.75rem; background: #E5E7EB; border-radius: 0.375rem; flex: 1;}.ld-skeleton-line.short { flex: 0.3;}.sr-container { max-width: 31.25rem; margin: 0 auto; min-height: 100vh; background: var(--bg-primary); padding-bottom: 5rem; overflow-x: hidden;}.sr-header { padding: 0.75rem 1rem; background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(0.625rem); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10;}.sr-input-wrapper { display: flex; align-items: center; gap: 0.75rem; }.sr-back-btn { background: none; border: none; font-size: 1.5rem; cursor: pointer; padding: 0.5rem 0.01rem 0.5rem 0; color: var(--gradient-start); font-weight: bold;}.sr-search-box { flex: 1; display: flex; align-items: center; background: #F3F4F6; border-radius: 1.875rem; padding: 0.625rem 1rem 1rem 0.225rem; gap: 0.2rem;}.sr-search-input { flex: 1; border: none; background: transparent; font-size: 1rem; outline: none; font-family: inherit;}.sr-search-input::placeholder { color: #9CA3AF;}.sr-cancel-btn { color: var(--gradient-start); font-weight: 500; cursor: pointer; font-size: 0.975rem;}.sr-section-title { font-size: 0.875rem; font-weight: 600; color: var(--text-secondary); padding: 0.75rem 1rem 0.375rem 1rem; background: var(--bg-primary);}.sr-recent-item { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; background: var(--bg-card); border-bottom: 1px solid #F3F4F6; cursor: pointer;}.sr-recent-item:active { background: #F5F3FF;}.sr-recent-left { display: flex; align-items: center; gap: 0.75rem;}.sr-recent-icon { font-size: 1.125rem; color: #9CA3AF;}.sr-recent-name { font-size: 0.9375rem; color: var(--text-primary);}.sr-clear-recent { font-size: 0.875rem; color: #9CA3AF; cursor: pointer; padding: 0.25rem 0.5rem;}.sr-clear-recent:active { color: var(--danger);}.sr-clear-all { text-align: center; padding: 0.875rem; color: var(--danger); font-size: 0.8125rem; font-weight: 500; cursor: pointer; background: var(--bg-card); margin-top: 0.5rem; border-top: 1px solid #F3F4F6;}.sr-trending-item { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; background: var(--bg-card); border-bottom: 1px solid #F3F4F6; cursor: pointer;}.sr-trending-item:active { background: #F5F3FF;}.sr-trending-left { display: flex; flex-direction: column; gap: 0.25rem;}.sr-trending-title { font-weight: 600; font-size: 0.9375rem; color: var(--text-primary);}.sr-trending-stats { font-size: 0.75rem; color: var(--text-secondary);}.sr-trending-badge { font-size: 0.75rem; color: var(--gradient-end); font-weight: 500;}.sr-user-result { display: flex; align-items: center; padding: 0.75rem 1rem; background: var(--bg-card); border-bottom: 1px solid #F3F4F6; gap: 0.75rem; cursor: pointer;}.sr-user-result:active { background: #F5F3FF;}.sr-user-avatar { width: 3rem; height: 3rem; border-radius: 50%; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); display: flex; align-items: center; justify-content: center; flex-shrink: 0;}.sr-user-avatar-inner { width: 2.625rem; height: 2.625rem; border-radius: 50%; background: white; overflow: hidden;}.sr-user-avatar-img { width: 100%; height: 100%; object-fit: cover;}.sr-user-info { flex: 1;}.sr-user-name { font-weight: 700; font-size: 0.9375rem; color: var(--text-primary);}.sr-user-school { font-size: 0.75rem; color: var(--gradient-start); margin-top: 0.125rem;}.sr-user-stats { font-size: 0.6875rem; color: var(--text-secondary); margin-top: 0.125rem;}.sr-follow-btn { background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); border: none; padding: 0.375rem 1rem; border-radius: 1.25rem; color: white; font-weight: 600; font-size: 0.75rem; cursor: pointer; flex-shrink: 0;}.sr-follow-btn.sr-following { background: #E5E7EB; color: #6B7280;}.sr-school-result { display: flex; align-items: center; padding: 0.75rem 1rem; background: var(--bg-card); border-bottom: 1px solid #F3F4F6; gap: 0.75rem; cursor: pointer;}.sr-school-result:active { background: #F5F3FF;}.sr-school-icon { width: 3rem; height: 3rem; border-radius: 1rem; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; flex-shrink: 0;}.sr-school-info { flex: 1;}.sr-school-name { font-weight: 700; font-size: 1rem; color: var(--text-primary);}.sr-school-members { font-size: 0.75rem; color: var(--text-secondary); margin-top: 0.125rem;}.sr-school-rank { font-size: 0.8125rem; font-weight: 600; color: var(--gradient-end); flex-shrink: 0;}.sr-highlight { background-color: #FEF3C7; color: #D97706; font-weight: 600; border-radius: 0.25rem; padding: 0 0.125rem;}.sr-empty-state { text-align: center; padding: 3.75rem 1.5rem; color: var(--text-secondary); background: var(--bg-card); margin: 1rem; border-radius: 1.5rem;}.sr-empty-icon { font-size: 3rem; margin-bottom: 0.75rem;}.sr-no-results { text-align: center; padding: 3.75rem 1.5rem; color: var(--text-secondary); background: var(--bg-card); margin: 1rem; border-radius: 1.5rem;}.sr-skeleton { background: #E5E7EB; animation: sr-pulse 1s infinite;}@keyframes sr-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; }}.sr-skeleton-row { display: flex; align-items: center; padding: 0.75rem 1rem; gap: 0.75rem; background: var(--bg-card); border-bottom: 1px solid #F3F4F6;}.sr-skeleton-avatar { width: 3rem; height: 3rem; border-radius: 50%; background: #E5E7EB;}.sr-skeleton-line { height: 0.75rem; background: #E5E7EB; border-radius: 0.375rem; flex: 1;}.sr-skeleton-line.short { flex: 0.3;}.sr-popup { position: fixed; bottom: 5rem; left: 50%; transform: translateX(-50%) translateY(6.25rem); background: #1F2937; color: white; padding: 0.5rem 1rem; border-radius: 2rem; font-size: 0.75rem; font-weight: 500; z-index: 1000; opacity: 0; transition: all 0.2s; pointer-events: none; white-space: nowrap;}.sr-popup.show { transform: translateX(-50%) translateY(0); opacity: 1;}.st-container { max-width: 31.25rem; margin: 0 auto; min-height: 100vh; background: var(--bg-primary); padding-bottom: 5rem;}.st-header { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; background: var(--bg-card); backdrop-filter: blur(0.625rem); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10;}.st-back-btn { background: none; border: none; font-size: 1.5rem; cursor: pointer; padding: 0.5rem; color: var(--gradient-start); font-weight: bold;}.st-title { flex: 1; text-align: center; font-size: 1.125rem; font-weight: 600; background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); background-clip: text; -webkit-background-clip: text; color: transparent;}.st-placeholder { width: 2.5rem;}.st-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 1.25rem; margin: 1rem; overflow: hidden;}.st-card-title { padding: 0.875rem 1rem; font-size: 0.875rem; font-weight: 600; color: var(--text-secondary); background: var(--bg-primary); border-bottom: 1px solid var(--border);}.st-item { display: flex; justify-content: space-between; align-items: center; padding: 1rem; cursor: pointer; transition: background 0.1s; border-bottom: 1px solid var(--border);}.st-item:active { background: rgba(124, 58, 237, 0.05);}.st-item-left { display: flex; align-items: center; gap: 0.75rem;}.st-icon { font-size: 1.25rem; width: 1.75rem;}.st-label { font-size: 0.9375rem; font-weight: 500; color: var(--text-primary);}.st-sub { font-size: 0.75rem; color: var(--text-secondary); margin-top: 0.125rem;}.st-value { font-size: 0.875rem; color: var(--gradient-start); font-weight: 500;}.st-info-row { display: flex; justify-content: space-between; padding: 0.875rem 1rem; border-bottom: 1px solid var(--border);}.st-info-label { font-size: 0.875rem; color: var(--text-secondary);}.st-info-value { font-size: 0.875rem; font-weight: 500; color: var(--text-primary);}.st-toggle { width: 3rem; height: 1.5rem; background: var(--border); border-radius: 1.5rem; position: relative; cursor: pointer; transition: background 0.2s;}.st-toggle.active { background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));}.st-toggle-knob { width: 1.25rem; height: 1.25rem; background: var(--bg-card); border-radius: 50%; position: absolute; top: 0.125rem; left: 0.1875rem; transition: left 0.2s; box-shadow: 0 0.0625rem 0.125rem rgba(0,0,0,0.1);}.st-toggle.active .st-toggle-knob { left: 1.5625rem;}.st-danger-text { color: var(--danger);}.st-about { text-align: center; padding: 1rem; font-size: 0.75rem; color: var(--text-secondary);}.st-modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(0.25rem); display: flex; align-items: center; justify-content: center; z-index: 1000; visibility: hidden; opacity: 0; transition: all 0.2s;}.st-modal-overlay.show { visibility: visible; opacity: 1;}.st-modal { background: var(--bg-card); border-radius: 1.75rem; width: 85%; max-width: 20rem; overflow: hidden;}.st-modal-header { padding: 1.25rem; text-align: center; font-weight: 700; font-size: 1.125rem; border-bottom: 1px solid var(--border); color: var(--text-primary);}.st-modal-body { padding: 1.25rem;}.st-modal-input { width: 100%; padding: 0.75rem; border: 1px solid var(--border); border-radius: 1rem; font-size: 0.875rem; margin-bottom: 1rem; font-family: inherit; background: var(--bg-card); color: var(--text-primary);}.st-modal-input:focus { outline: none; border-color: var(--gradient-start);}.st-modal-textarea { width: 100%; padding: 0.75rem; border: 1px solid var(--border); border-radius: 1rem; font-size: 0.875rem; font-family: inherit; resize: vertical; background: var(--bg-card); color: var(--text-primary);}.st-modal-btn { padding: 0.875rem; text-align: center; cursor: pointer; font-weight: 600; border-top: 1px solid var(--border); color: var(--text-primary);}.st-modal-btn.danger { color: var(--danger);}.st-popup { position: fixed; bottom: 5rem; left: 50%; transform: translateX(-50%) translateY(6.25rem); background: #1F2937; color: white; padding: 0.5rem 1rem; border-radius: 2rem; font-size: 0.75rem; font-weight: 500; z-index: 1100; opacity: 0; transition: all 0.2s; pointer-events: none; white-space: nowrap;}.st-popup.show { transform: translateX(-50%) translateY(0); opacity: 1;}.st-radio-group { display: flex; flex-direction: column; gap: 0.75rem;}.st-radio-option { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; color: var(--text-primary); font-size: 0.875rem;}.st-radio-option input { accent-color: var(--gradient-start); width: 1rem; height: 1rem;}.nt-container { max-width: 31.25rem; margin: 0 auto; min-height: 100vh; background: var(--bg-primary); padding-bottom: 5rem;}.nt-header { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(0.625rem); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10;}.nt-back-btn { background: none; border: none; font-size: 1.5rem; cursor: pointer; padding: 0.5rem; color: var(--gradient-start); font-weight: bold;}.nt-title { flex: 1; text-align: center; font-size: 1.125rem; font-weight: 600; background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); background-clip: text; -webkit-background-clip: text; color: transparent;}.nt-clear-btn { background: none; border: none; font-size: 0.75rem; color: var(--gradient-start); font-weight: 500; cursor: pointer; padding: 0.25rem 0.5rem;}.nt-refresh-indicator { text-align: center; padding: 0.625rem; color: var(--text-secondary); font-size: 0.75rem; background: var(--bg-primary);}.nt-item { display: flex; align-items: center; padding: 1rem; background: var(--bg-card); border-bottom: 1px solid var(--border); cursor: pointer; transition: background 0.1s;}.nt-item:active { background: rgba(124, 58, 237, 0.05);}.nt-item.read { opacity: 0.6;}.nt-avatar { width: 3rem; height: 3rem; border-radius: 50%; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-right: 0.75rem;}.nt-avatar-inner { width: 2.625rem; height: 2.625rem; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; overflow: hidden;}.nt-avatar-img { width: 100%; height: 100%; object-fit: cover;}.nt-avatar-placeholder { font-size: 1.5rem;}.nt-content { flex: 1;}.nt-text { font-size: 0.875rem; color: var(--text-primary); line-height: 1.4;}.nt-text strong { font-weight: 700;}.nt-time { font-size: 0.6875rem; color: var(--text-secondary); margin-top: 0.25rem;}.nt-follow-btn { background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); border: none; padding: 0.375rem 1rem; border-radius: 1.25rem; color: white; font-weight: 600; font-size: 0.75rem; cursor: pointer; flex-shrink: 0; margin-left: 0.5rem;}.nt-follow-btn.following { background: #E5E7EB; color: #6B7280;}.nt-empty-state { text-align: center; padding: 3.75rem 1.5rem; color: var(--text-secondary); background: var(--bg-card); margin: 1rem; border-radius: 1.5rem;}.nt-empty-icon { font-size: 3rem; margin-bottom: 0.75rem;}.nt-popup { position: fixed; bottom: 5rem; left: 50%; transform: translateX(-50%) translateY(6.25rem); background: #1F2937; color: white; padding: 0.5rem 1rem; border-radius: 2rem; font-size: 0.75rem; font-weight: 500; z-index: 1000; opacity: 0; transition: all 0.2s; pointer-events: none; white-space: nowrap;}.nt-popup.show { transform: translateX(-50%) translateY(0); opacity: 1;}.op-container { max-width: 31.25rem; margin: 0 auto; min-height: 100vh; background: var(--bg-primary); padding-bottom: 5rem;}.op-header { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; background: var(--bg-card); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10;}.op-back-btn { background: none; border: none; font-size: 1.5rem; cursor: pointer; padding: 0.5rem; color: var(--gradient-start); font-weight: bold;}.op-title { font-size: 1.125rem; font-weight: 600; background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); background-clip: text; -webkit-background-clip: text; color: transparent;}.op-placeholder { width: 2.5rem;}.op-refresh-indicator { text-align: center; padding: 0.625rem; color: var(--text-secondary); font-size: 0.75rem; background: var(--bg-primary);}.op-profile-info { padding: 1.25rem 1rem; display: flex; gap: 1.25rem; border-bottom: 1px solid var(--border); background: var(--bg-card);}.op-avatar-section { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; cursor: pointer;}.op-story-ring { width: 5.625rem; height: 5.625rem; border-radius: 50%; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end), #A855F7, #D946EF); display: flex; align-items: center; justify-content: center;}.op-avatar-inner { width: 5rem; height: 5rem; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; overflow: hidden;}.op-avatar-img { width: 4.625rem; height: 4.625rem; border-radius: 50%; object-fit: cover;}.op-stats { flex: 1; display: flex; justify-content: space-around; align-items: center;}.op-stat-item { text-align: center; cursor: pointer;}.op-stat-number { font-size: 1.25rem; font-weight: 800; color: var(--text-primary);}.op-stat-label { font-size: 0.75rem; color: var(--text-secondary);}.op-bio-section { padding: 1rem; background: var(--bg-card); border-bottom: 1px solid var(--border);}.op-display-name { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem;}.op-username { font-size: 0.8125rem; color: var(--text-secondary); margin-bottom: 0.5rem;}.op-bio-text { font-size: 0.875rem; color: var(--text-primary); margin-bottom: 0.75rem; line-height: 1.4;}.op-school-badge { display: inline-flex; align-items: center; gap: 0.375rem; background: #F5F3FF; padding: 0.375rem 0.75rem; border-radius: 1.25rem; font-size: 0.75rem; font-weight: 500; color: var(--gradient-start);}.op-you-badge { background: var(--warning); color: #1F2937; font-size: 0.625rem; font-weight: 600; padding: 0.125rem 0.5rem; border-radius: 1.25rem; margin-left: 0.375rem;}.op-follow-section { padding: 1rem; background: var(--bg-card); border-bottom: 1px solid var(--border);}.op-follow-btn { width: 100%; background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); border: none; padding: 0.75rem; border-radius: 2.5rem; color: white; font-weight: 700; font-size: 1rem; cursor: pointer;}.op-follow-btn.following { background: #E5E7EB; color: #6B7280;}.op-titles-section { background: var(--bg-card); margin-top: 0.5rem; padding: 1rem; border-bottom: 1px solid var(--border);}.op-titles-header { font-size: 0.875rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.75rem;}.op-titles-grid { display: flex; flex-wrap: wrap; gap: 0.75rem;}.op-title-badge { background: #FEFCE8; border: 1px solid #FDE047; border-radius: 1.875rem; padding: 0.5rem 1rem; display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer;}.op-title-badge:active { transform: scale(0.96);}.op-title-name { font-size: 0.8125rem; font-weight: 600; color: var(--text-primary);}.op-star-badge { background: var(--warning); border-radius: 1.875rem; padding: 0.125rem 0.5rem; font-size: 0.75rem; font-weight: 700; color: #1F2937; display: inline-flex; align-items: center; gap: 0.25rem;}.op-empty-titles { color: var(--text-secondary); font-size: 0.8125rem; text-align: center; padding: 1.25rem;}.op-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.125rem; background: var(--bg-primary);}.op-grid-post { aspect-ratio: 1 / 1; background: #F3F4F6; cursor: pointer; position: relative;}.op-grid-post img { width: 100%; height: 100%; object-fit: cover;}.op-empty-posts { text-align: center; padding: 3.75rem 1.25rem; color: var(--text-secondary);}.op-modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(0.25rem); display: flex; align-items: center; justify-content: center; z-index: 1000; visibility: hidden; opacity: 0; transition: all 0.2s;}.op-modal-overlay.show { visibility: visible; opacity: 1;}.op-avatar-modal { background: transparent; display: flex; flex-direction: column; align-items: center; justify-content: center;}.op-avatar-full { width: 80%; max-width: 20rem; border-radius: 10px; box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.3);}.op-modal-close { margin-top: 1.5rem; background: rgba(0,0,0,0.6); color: white; border: none; padding: 0.5rem 1.5rem; border-radius: 2rem; font-size: 0.875rem; cursor: pointer;}.op-competition-modal { background: var(--bg-card); border-radius: 2rem; width: 85%; max-width: 21.25rem; overflow: hidden;}.op-competition-header { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); padding: 1.25rem; text-align: center; color: white;}.op-competition-rank { background: #FEF3C7; color: #D97706; padding: 0.25rem 0.75rem; border-radius: 1.25rem; font-size: 0.75rem; font-weight: 600; display: inline-block;}.op-competition-body { padding: 1.25rem;}.op-competition-stat { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid #F3F4F6;}.op-competition-label { color: var(--text-secondary); font-size: 0.875rem;}.op-competition-value { font-weight: 700; color: var(--text-primary);}.op-close-btn { background: #F3F4F6; border: none; padding: 0.875rem; margin: 0 1.25rem 1.25rem 1.25rem; border-radius: 2.5rem; font-weight: 600; cursor: pointer;}.op-title-detail-modal { background: var(--bg-card); border-radius: 2rem; width: 85%; max-width: 21.25rem; max-height: 70vh; overflow: hidden; display: flex; flex-direction: column;}.op-title-detail-header { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); padding: 1.25rem; text-align: center; color: white;}.op-title-detail-body { padding: 1.25rem; overflow-y: auto;}.op-season-item { padding: 0.75rem 0; border-bottom: 1px solid #F3F4F6; display: flex; justify-content: space-between; align-items: center;}.op-season-info { flex: 1;}.op-season-name { font-weight: 600; font-size: 0.875rem;}.op-season-date { font-size: 0.6875rem; color: var(--text-secondary);}.op-season-rank { font-weight: 700; font-size: 1rem;}.op-season-rank.champion { color: var(--warning);}.op-post-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg-card); z-index: 1001; display: none; flex-direction: column; overflow-y: auto;}.op-post-modal.show { display: flex;}.op-post-header { position: sticky; top: 0; background: var(--bg-card); padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 1rem;}.op-post-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--gradient-start);}.op-post-image { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #1a1a1a;}.op-post-actions { display: flex; padding: 0.75rem 1rem; gap: 1.25rem; border-top: 1px solid #F3F4F6;}.op-post-action { display: flex; align-items: center; gap: 0.375rem; font-size: 1.375rem; cursor: pointer;}.op-post-action.liked { color: var(--gradient-end);}.op-post-caption { padding: 0 1rem 0.75rem; font-size: 0.875rem;}.op-post-caption strong { font-weight: 700; margin-right: 0.375rem;}.op-skeleton { background: #E5E7EB; animation: op-pulse 1s infinite;}@keyframes op-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; }}.op-skeleton-row { display: flex; align-items: center; padding: 0.75rem 1rem; gap: 0.75rem;}.op-skeleton-avatar { width: 3rem; height: 3rem; border-radius: 50%; background: #E5E7EB;}.op-skeleton-line { height: 0.75rem; background: #E5E7EB; border-radius: 0.375rem; flex: 1;}.op-popup { position: fixed; bottom: 5rem; left: 50%; transform: translateX(-50%) translateY(6.25rem); background: #1F2937; color: white; padding: 0.5rem 1rem; border-radius: 2rem; font-size: 0.75rem; font-weight: 500; z-index: 1100; opacity: 0; transition: all 0.2s; pointer-events: none; white-space: nowrap;}.op-popup.show { transform: translateX(-50%) translateY(0); opacity: 1;}.op-comments-modal.show { transform: translateY(0);}.op-comment-item { display: flex; gap: 10px; margin-bottom: 16px;}.op-comment-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #7C3AED, #EC4899); display: flex; align-items: center; justify-content: center; flex-shrink: 0;}.op-comment-inner { width: 32px; height: 32px; border-radius: 50%; background: white; overflow: hidden; display: flex; align-items: center; justify-content: center;}.op-comment-inner .op-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover;}.op-comment-content { flex: 1;}.op-comment-username { font-weight: 700; font-size: 13px;}.op-comment-text { font-size: 13px; margin-top: 2px;}.op-comment-time { font-size: 10px; color: #9CA3AF; margin-top: 4px;}.ep-container { max-width: 31.25rem; margin: 0 auto; min-height: 100vh; background: var(--bg-primary); padding-bottom: 5rem;}.ep-header { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; background: var(--bg-card); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10;}.ep-back-btn { background: none; border: none; font-size: 1.5rem; cursor: pointer; padding: 0.5rem; color: var(--gradient-start); font-weight: bold;}.ep-title { font-size: 1.125rem; font-weight: 600; background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); background-clip: text; -webkit-background-clip: text; color: transparent;}.ep-save-btn { background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); border: none; padding: 0.5rem 1.25rem; border-radius: 1.5625rem; color: white; font-weight: 600; font-size: 0.875rem; cursor: pointer;}.ep-content { padding: 1.5rem;}.ep-avatar-section { display: flex; flex-direction: column; align-items: center; margin-bottom: 2rem;}.ep-avatar-ring { width: 6rem; height: 6rem; border-radius: 50%; background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); display: flex; align-items: center; justify-content: center; cursor: pointer;}.ep-avatar-ring:active { transform: scale(0.95);}.ep-avatar-inner { width: 5.375rem; height: 5.375rem; border-radius: 50%; background: white; display: flex; align-items: center; justify-content: center; overflow: hidden;}.ep-avatar-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover;}.ep-avatar-placeholder { font-size: 2.5rem; color: var(--gradient-start);}.ep-change-photo { margin-top: 0.75rem; color: var(--gradient-start); font-size: 0.75rem; font-weight: 500; cursor: pointer;}.ep-input-group { margin-bottom: 1.25rem;}.ep-label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.5rem;}.ep-input { width: 100%; padding: 0.875rem 1rem; border: 1.5px solid var(--border); border-radius: 1rem; font-size: 1rem; font-family: inherit; background: var(--bg-card); color: var(--text-primary); outline: none;}.ep-input:focus { border-color: var(--gradient-start);}.ep-input.error { border-color: var(--danger);}.ep-input.success { border-color: var(--success);}.ep-username-wrapper { position: relative;}.ep-username-status { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); font-size: 1rem;}.ep-error-msg { font-size: 0.625rem; color: var(--danger); margin-top: 0.375rem; display: none;}.ep-error-msg.show { display: block;}.ep-success-msg { font-size: 0.625rem; color: var(--success); margin-top: 0.375rem; display: none;}.ep-success-msg.show { display: block;}.ep-textarea { resize: none; min-height: 5rem;}.ep-char-counter { text-align: right; font-size: 0.625rem; color: var(--text-secondary); margin-top: 0.375rem;}.ep-school-selector { position: relative; cursor: pointer;}.ep-school-display { width: 100%; padding: 0.875rem 1rem; border: 1.5px solid var(--border); border-radius: 1rem; font-size: 1rem; background: var(--bg-card); color: var(--text-primary); display: flex; justify-content: space-between; align-items: center;}.ep-school-dropdown { position: absolute; top: 3.5rem; left: 0; right: 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: 1rem; box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.1); z-index: 10; display: none; overflow: hidden; max-height: 18rem; flex-direction: column;}.ep-school-dropdown.show { display: flex;}.ep-school-search { width: 100%; padding: 0.75rem 1rem; border: none; border-bottom: 1px solid var(--border); font-size: 0.875rem; outline: none; background: var(--bg-card); color: var(--text-primary);}.ep-school-list { overflow-y: auto; max-height: 14rem;}.ep-school-option { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); cursor: pointer; transition: background 0.1s; color: var(--text-primary);}.ep-school-option.selected { background: rgba(124, 58, 237, 0.1); color: var(--gradient-start); font-weight: 500;}.ep-no-results { padding: 1rem; text-align: center; color: var(--text-secondary); font-size: 0.875rem;}.ep-password-btn { width: 100%; background: #F3F4F6; border: none; padding: 1rem; border-radius: 1rem; font-size: 1rem; font-weight: 600; color: var(--gradient-start); cursor: pointer; margin-top: 1rem; margin-bottom: 1rem;}.ep-modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(0.25rem); display: flex; align-items: center; justify-content: center; z-index: 1000; visibility: hidden; opacity: 0; transition: all 0.2s;}.ep-modal-overlay.show { visibility: visible; opacity: 1;}.ep-modal { background: var(--bg-card); border-radius: 1.75rem; width: 85%; max-width: 20rem; overflow: hidden;}.ep-modal-header { padding: 1.25rem; text-align: center; font-weight: 700; font-size: 1.125rem; border-bottom: 1px solid var(--border); color: var(--text-primary);}.ep-modal-body { padding: 1.25rem;}.ep-modal-input-group { margin-bottom: 1rem;}.ep-modal-label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.375rem;}.ep-password-wrapper { position: relative;}.ep-password-wrapper .ep-modal-input { padding-right: 4rem;}.ep-modal-input { width: 100%; padding: 0.75rem; border: 1px solid var(--border); border-radius: 1rem; font-size: 0.875rem; font-family: inherit; background: var(--bg-card); color: var(--text-primary); outline: none;}.ep-modal-input:focus { border-color: var(--gradient-start);}.ep-password-toggle { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--gradient-start); font-size: 0.75rem; font-weight: 600; cursor: pointer;}.ep-modal-buttons { display: flex; gap: 0.75rem; margin-top: 1.25rem;}.ep-modal-cancel { flex: 1; background: #F3F4F6; border: none; padding: 0.75rem; border-radius: 2rem; font-weight: 600; cursor: pointer; color: var(--text-secondary);}.ep-modal-save { flex: 1; background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end)); border: none; padding: 0.75rem; border-radius: 2rem; font-weight: 600; cursor: pointer; color: white;}.ep-error-text { color: var(--danger); font-size: 0.6875rem; margin-top: 0.25rem;}.ep-popup { position: fixed; bottom: 5rem; left: 50%; transform: translateX(-50%) translateY(6.25rem); background: #1F2937; color: white; padding: 0.5rem 1rem; border-radius: 2rem; font-size: 0.75rem; font-weight: 500; z-index: 1100; opacity: 0; transition: all 0.2s; pointer-events: none; white-space: nowrap;}.ep-popup.show { transform: translateX(-50%) translateY(0); opacity: 1;}#ep-avatar-input { display: none;}.ep-skeleton { background: #E5E7EB; animation: ep-pulse 1s infinite;}@keyframes ep-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; }}#loader-overlay { position: fixed; inset: 0; background: rgba(10, 10, 20, 0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); display: none; align-items: center; justify-content: center; flex-direction: column; z-index: 9999; opacity: 0; transition: opacity 0.4s ease;}#loader-overlay.active { display: flex; opacity: 1;}#loader-cancel-btn { position: absolute; top: 20px; right: 20px; background: none; border: none; color: rgba(255, 255, 255, 0.2); font-size: 18px; cursor: pointer; display: none; padding: 8px 12px; font-family: inherit; transition: color 0.2s;}#loader-cancel-btn:hover { color: rgba(255, 255, 255, 0.5);}#loader-cancel-btn.show { display: block;}#loader-logo { font-size: 48px; font-weight: 800; font-style: italic; background: linear-gradient(135deg, #7C3AED, #EC4899); background-clip: text; -webkit-background-clip: text; color: transparent; animation: breathe 3s ease-in-out infinite; user-select: none; letter-spacing: -0.02em; will-change: transform, opacity;}@keyframes breathe { 0% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.03); opacity: 1; } 100% { transform: scale(1); opacity: 0.7; }}#hs-top,.pr-header,.ld-header,.sr-header,.st-header,.nt-header,.op-header,.ep-header,.ap-header { background: var(--bg-card) !important; border-bottom: 1px solid var(--border) !important;}#hs-logo,.pr-title,.ld-title,.sr-title,.st-title,.nt-title,.op-title,.ep-title,.ap-header-title { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); background-clip: text; -webkit-background-clip: text; color: transparent;}.pr-back-btn,.ld-back-btn,.sr-back-btn,.st-back-btn,.nt-back-btn,.op-back-btn,.ep-back-btn,.ap-cancel-btn { color: var(--gradient-start) !important;}.pr-container,.op-container { overflow-x: hidden !important; max-width: 100% !important;}.pr-posts-grid,.op-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; width: 100%; max-width: 100%; overflow: hidden;}.pr-grid-post,.op-grid-post { aspect-ratio: 1 / 1; width: 100%; max-width: 100%; overflow: hidden;}.pr-grid-post img,.op-grid-post img { width: 100%; height: 100%; object-fit: cover; display: block;}.pr-profile-info,.op-profile-info { width: 100%; max-width: 100%; overflow: hidden; padding: 1.25rem 1rem;}.pr-stats,.op-stats { flex-wrap: wrap; gap: 8px;}#hs-live-board { background: var(--bg-card) !important; border-bottom: 1px solid var(--border) !important;}.ld-you-badge { background: #F59E0B; color: #000000; font-size: 0.625rem; font-weight: 700; padding: 0.125rem 0.5rem; border-radius: 1.25rem; margin-left: 0.375rem;}.ld-rank-item.ld-highlight { background: rgba(124, 58, 237, 0.12); border-left: 0.1875rem solid var(--gradient-start); color: var(--text-primary) !important;}.ld-rank-item.ld-highlight .ld-rank-name,.ld-rank-item.ld-highlight .ld-rank-school,.ld-rank-item.ld-highlight .ld-rank-stats,.ld-rank-item.ld-highlight .ld-rank-number { color: var(--text-primary) !important;}.pr-stat-item,.op-stat-item { min-width: 60px;}#hs-screen,.pr-container,.ld-container,.sr-container,.st-container,.nt-container,.op-container,.ep-container,.ap-container { max-width: 100%; overflow-x: hidden;}.active { visibility: visible; transition: all 0.3s ease;}.ps-avatar-img,.pr-avatar-img,.op-avatar-img,.ep-avatar-img,.hs-avatar { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 50%;}.ld-see-more { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.875rem; background: var(--bg-primary) !important; cursor: pointer; border-top: 1px solid var(--border); color: var(--gradient-start) !important; font-weight: 500; transition: background 0.2s;}.ld-see-more:active { background: rgba(124, 58, 237, 0.08) !important;}.ld-full-list { display: none; border-top: 1px solid var(--border);}.ld-full-item { display: flex; align-items: center; padding: 0.625rem 1rem; border-bottom: 1px solid var(--border); gap: 0.75rem; background: var(--bg-card);}.ld-full-item.ld-highlight { background: rgba(124, 58, 237, 0.08) !important; border-left: 3px solid var(--gradient-start) !important;}.ld-full-number { width: 2rem; font-size: 0.875rem; font-weight: 600; color: var(--text-secondary);}.ld-full-name { flex: 1; font-size: 0.875rem; font-weight: 500; color: var(--text-primary);}.ld-full-stats { font-size: 0.75rem; font-weight: 600; color: var(--gradient-end);}.ld-school-item.ld-highlight { background: rgba(124, 58, 237, 0.08) !important; border-left: 3px solid var(--gradient-start) !important;}.ld-school-item.ld-highlight .ld-school-name { color: var(--gradient-start) !important;}.ld-school-item.ld-highlight .ld-school-score { color: var(--gradient-start) !important;}.ld-you-badge { background: var(--gradient-start) !important; color: white !important; font-size: 0.625rem; font-weight: 600; padding: 0.125rem 0.5rem; border-radius: 1.25rem; margin-left: 0.375rem;}.ap-caption-input { width: 100%; padding: 1rem; border: none; font-size: 0.9375rem; font-family: inherit; resize: none; outline: none; min-height: 6.25rem; background: var(--bg-card); color: #1F2937 !important; }:root.dark .ap-caption-input { color: #1F2937 !important; background: #FFFFFF !important; }.ap-caption-input:focus { background: #FEFCE8 !important; }* { -webkit-tap-highlight-color: transparent !important; -webkit-touch-callout: none !important; -webkit-user-select: none !important; user-select: none !important;}input, textarea { -webkit-user-select: text !important; user-select: text !important;}.inactive { visibility: hidden; transition: all 0.3s ease;} .active2 { display: flex; transition: all 0.3s ease; }.inactive2 { display: none; transition: all 0.3s ease;}