:root {
            --bg-main: #fcfcfd;
            --text-main: #09090b;
            --text-muted: #52525b;
            --border-color: rgba(9, 9, 11, 0.08);
            --panel-bg: rgba(255, 255, 255, 0.75);
            --accent: #f4f4f5;
            --accent-glow: #3b82f6;
            --success: #10b981;
            --dropdown-bg: #ffffff;
            --social-card-bg: rgba(9, 9, 11, 0.02);
            --social-icon-bg: #09090b;
            --social-icon-fill: #ffffff;
            --input-bg: rgba(244, 244, 245, 0.6);
            --btn-bg: #09090b;
            --btn-text: #ffffff;
            --btn-hover: #27272a;
            --radial-color: rgba(9, 9, 11, 0.05);
            --header-bg: rgba(252, 252, 253, 0.85);
            --toast-bg: #ffffff;
            --shadow-light: 0 10px 25px rgba(9, 9, 11, 0.05);
        }

        * { 
            box-sizing: border-box; 
            margin: 0; 
            padding: 0; 
            -webkit-tap-highlight-color: transparent; 
        }

        html, body {
            width: 100%;
            min-height: 100vh;
            background-color: var(--bg-main);
            background-image: radial-gradient(var(--radial-color) 1.5px, transparent 1.5px);
            background-size: 24px 24px;
            color: var(--text-main);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Navigation Header */
        .top-header {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 75px;
            background: var(--header-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            display: flex; justify-content: center; align-items: center;
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }
        .header-container {
            width: 100%;
            max-width: 1200px;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .brand { 
            font-size: 20px; 
            font-weight: 900; 
            letter-spacing: 3px; 
            color: var(--text-main); 
            cursor: pointer;
            display: flex;
            align-items: center;
            user-select: none;
            text-decoration: none;
        }
        .studio-badge {
            font-size: 9px;
            font-weight: 700;
            background: var(--text-main);
            color: var(--bg-main);
            margin-left: 8px;
            padding: 2px 6px;
            border-radius: 4px;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 25px;
        }
        .nav-link {
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: color 0.2s ease;
            padding: 8px 12px;
            border-radius: 6px;
            text-decoration: none;
        }
        .nav-link:hover {
            color: var(--text-main);
        }
        .nav-link.active {
            color: var(--text-main);
            background: var(--accent);
        }

        /* 3-Dot Dropdown */
        .nav-right {
            position: relative;
            display: flex;
            align-items: center;
        }
        .menu-dots-btn {
            background: transparent;
            border: 1px solid var(--border-color);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--text-muted);
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .menu-dots-btn:hover, .menu-dots-btn:focus {
            color: var(--text-main);
            border-color: rgba(9, 9, 11, 0.15);
            background: var(--accent);
        }
        .menu-dots-btn svg {
            width: 20px;
            height: 20px;
            pointer-events: none;
        }
        .menu-dropdown {
            position: absolute;
            top: 50px;
            right: 0;
            background: var(--dropdown-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 8px;
            width: 200px;
            box-shadow: var(--shadow-light);
            display: none;
            flex-direction: column;
            z-index: 1010;
        }
        .menu-dropdown.show {
            display: flex;
            animation: dropdownFadeIn 0.2s ease-out forwards;
        }
        @keyframes dropdownFadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .menu-dropdown a {
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            padding: 10px 14px;
            color: var(--text-muted);
            font-size: 14px;
            font-family: inherit;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            display: block;
            box-sizing: border-box;
        }
        .menu-dropdown a:hover, .menu-dropdown a.active {
            color: var(--text-main);
            background: var(--accent);
        }

        /* Page Layout */
        main {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 120px 30px 60px 30px;
        }

        .page-container {
            display: block;
        }
        .page {
            opacity: 0;
            transform: translateY(15px);
            animation: pageFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            display: none;
        }
        .page.active-page {
            display: block;
        }
        @keyframes pageFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        h1, .page-title { 
            font-size: 42px; 
            font-weight: 800; 
            margin-bottom: 25px; 
            letter-spacing: -1.5px; 
            color: var(--text-main);
        }
        .studio-header { 
            font-size: 22px; 
            font-weight: 700; 
            margin-bottom: 20px; 
            letter-spacing: -0.5px; 
            color: var(--text-main);
        }

        .glass-panel {
            background: var(--panel-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 35px;
            margin-bottom: 40px;
            box-shadow: var(--shadow-light);
        }
        .card-header { 
            font-size: 11px; 
            text-transform: uppercase; 
            letter-spacing: 2px; 
            color: var(--text-muted); 
            margin-bottom: 20px; 
            font-weight: 700; 
            border-bottom: 1px solid var(--border-color); 
            padding-bottom: 15px; 
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .live-dot {
            width: 6px;
            height: 6px;
            background: var(--success);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--success);
            animation: pulse 1.8s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
        }

        .announcement-dynamic-img, .about-dynamic-img { 
            width: 100%; 
            border-radius: 12px; 
            margin-top: 25px; 
            border: 1px solid var(--border-color);
            max-height: 380px; 
            object-fit: cover; 
            display: block; 
        }

        .capabilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        .capability-card {
            background: var(--panel-bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .capability-card:hover {
            transform: translateY(-4px);
            border-color: rgba(9, 9, 11, 0.15);
            box-shadow: var(--shadow-light);
        }
        .cap-image {
            width: 100%;
            height: 200px;
            background-color: var(--accent);
            position: relative;
            overflow: hidden;
        }
        .widget-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
            filter: grayscale(100%) contrast(125%) brightness(100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .capability-card:hover .widget-image {
            transform: scale(1.05);
            filter: grayscale(100%) contrast(140%) brightness(95%);
        }
        .cap-content {
            padding: 24px;
        }
        .cap-content h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-main);
        }
        .cap-content p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* About page specific */
        .about-studio-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        .about-bio { 
            font-size: 16px; 
            line-height: 1.8; 
            color: var(--text-muted); 
            margin-bottom: 30px; 
        }
        .social-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
            gap: 20px; 
            margin-top: 30px; 
        }
        .social-card { 
            background: var(--social-card-bg); 
            border: 1px solid var(--border-color); 
            border-radius: 12px; 
            padding: 20px; 
            display: flex; 
            align-items: center; 
            transition: all 0.2s ease; 
            text-decoration: none; 
        }
        .social-card:hover { 
            background: rgba(9, 9, 11, 0.04); 
            border-color: rgba(9, 9, 11, 0.15); 
            transform: translateY(-2px); 
        }
        .social-icon-wrapper { 
            width: 44px; 
            height: 44px; 
            background: var(--social-icon-bg); 
            border-radius: 8px; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            margin-right: 15px; 
            flex-shrink: 0; 
        }
        .social-icon-wrapper svg { width: 22px; height: 22px; fill: var(--social-icon-fill); }
        .social-info { flex-grow: 1; }
        .social-title { display: block; font-size: 16px; font-weight: 700; color: var(--text-main); }
        .social-desc { display: block; font-size: 12px; color: var(--text-muted); }

        /* Ticket page specific */
        .ticket-portal-card {
            max-width: 800px;
            margin: 0 auto;
        }
        .ticket-header h2 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
        }
        .ticket-header p {
            font-size: 14px;
            color: var(--text-muted);
        }
        .ticket-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-row {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .form-group {
            flex: 1;
            min-width: 250px;
            display: flex;
            flex-direction: column;
        }
        .input-label { 
            font-size: 11px; 
            font-weight: 700; 
            color: var(--text-muted); 
            text-transform: uppercase; 
            letter-spacing: 1px; 
            display: block; 
            margin-bottom: 8px; 
        }
        .glass-form-input { 
            padding: 14px 18px; 
            border-radius: 8px; 
            border: 1px solid var(--border-color); 
            background: var(--input-bg); 
            color: var(--text-main); 
            font-family: inherit; 
            font-size: 14px; 
            width: 100%; 
            transition: all 0.2s ease; 
        }
        .glass-form-input:focus { 
            border-color: rgba(9, 9, 11, 0.25); 
            background: #ffffff;
            outline: none; 
        }
        .glass-select {
            appearance: none;
            cursor: pointer;
            background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
            background-repeat: no-repeat;
            background-position: right 14px center;
            background-size: 16px;
            padding-right: 40px;
        }
        .studio-primary-btn { 
            background: var(--btn-bg); 
            color: var(--btn-text); 
            border-radius: 8px; 
            width: 100%; 
            padding: 15px 30px;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .studio-primary-btn:hover { 
            background: var(--btn-hover);
            transform: translateY(-1px);
        }
        #notification-center { 
            position: fixed; 
            top: 90px; 
            right: 20px; 
            display: flex; 
            flex-direction: column; 
            gap: 10px; 
            z-index: 3000; 
        }
        .notification { 
            background: var(--toast-bg); 
            border-left: 4px solid var(--text-main); 
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            border-right: 1px solid var(--border-color);
            box-shadow: var(--shadow-light); 
            padding: 15px 20px; 
            border-radius: 8px; 
            min-width: 280px; 
            max-width: 350px;
            transform: translateX(120%); 
            opacity: 0; 
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
        }
        .notification.show { transform: translateX(0); opacity: 1; }

        footer {
            padding: 40px 0;
            text-align: center;
            font-size: 13px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-color);
            margin-top: 60px;
        }

        /* Articles page */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            margin-top: 10px;
        }
        .article-card {
            background: var(--panel-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 28px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            text-decoration: none;
            display: block;
            box-shadow: var(--shadow-light);
        }
        .article-card:hover {
            transform: translateY(-4px);
            border-color: rgba(9, 9, 11, 0.15);
            box-shadow: 0 14px 35px rgba(9, 9, 11, 0.08);
        }
        .article-card-number {
            font-size: 11px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .article-card-number .live-dot {
            width: 5px;
            height: 5px;
        }
        .article-card-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .article-card-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .article-card-arrow {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 16px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            transition: color 0.2s ease;
        }
        .article-card:hover .article-card-arrow {
            color: var(--text-main);
        }
        .article-card-arrow svg {
            width: 16px;
            height: 16px;
            transition: transform 0.2s ease;
        }
        .article-card:hover .article-card-arrow svg {
            transform: translateX(4px);
        }

        @media (min-width: 901px) {
            .menu-dots-btn { display: none; }
        }

        @media (max-width: 900px) {
            .header-container { padding: 0 20px; }
            .nav-links { display: none; }
            main { padding: 110px 20px 40px 20px; }
            .page-title, h1 { font-size: 32px; }
            .about-studio-grid { grid-template-columns: 1fr; gap: 30px; }
            .articles-grid { grid-template-columns: 1fr; }
            #notification-center { top: 85px; left: 20px; right: 20px; }
            .notification { min-width: 100%; transform: translateY(-30px); }
            .notification.show { transform: translateY(0); }
        }