@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&amp;display=swap');
        
        :root {
            --pokemon-red: #ef4036;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            line-height: 1.5;
            color: #222;
            background: #fff;
        }
        
        .header {
            background: #111;
            color: #fff;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: #fff;
        }
        
        .logo-text {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: -1px;
        }
        
        .logo-sub {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            color: #f7d02c;
        }
        
        .nav {
            display: flex;
            align-items: center;
            gap: 24px;
            font-size: 17px;
            font-weight: 500;
        }
        
        .nav a {
            color: #fff;
            text-decoration: none;
            transition: color 0.2s;
        }
        
        .nav a:hover {
            color: #f7d02c;
        }
        
        .user-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .btn {
            background: #ef4036;
            color: #fff;
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .btn:hover {
            background: #c82f26;
            transform: translateY(-1px);
        }
        
        .btn-secondary {
            background: #222;
            color: #fff;
        }
        
        .container {
            max-width: 1080px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        
        h1 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .page {
            display: none;
        }
        
        .page.active {
            display: block;
        }
        
        .section-header {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .pokeball {
            width: 28px;
            height: 28px;
        }
        
        .search-bar {
            display: flex;
            align-items: center;
            border: 2px solid #222;
            border-radius: 4px;
            overflow: hidden;
            height: 52px;
        }
        
        .search-input {
            flex: 1;
            height: 100%;
            border: none;
            padding: 0 20px;
            font-size: 18px;
            outline: none;
        }
        
        .search-btn {
            background: #222;
            color: #fff;
            border: none;
            width: 120px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 17px;
            font-weight: 500;
        }
        
        .regulamentos {
            margin-bottom: 35px;
        }
        
        .radio-group {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .radio-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 17px;
            cursor: pointer;
        }
        
        .notes {
            font-size: 15px;
            line-height: 1.4;
            color: #444;
        }
        
        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 3px solid #222;
            padding-bottom: 12px;
            margin-bottom: 25px;
        }
        
        .item-count {
            font-size: 22px;
            font-weight: 700;
        }
        
        .result {
            margin-bottom: 35px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .related-bar {
            background: #f1f1f1;
            padding: 8px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            font-weight: 500;
            color: #555;
        }
        
        .tag {
            background: #e5e5e5;
            border-radius: 20px;
            padding: 4px 14px;
            font-size: 14px;
            font-weight: 500;
        }
        
        .category-tag {
            background: #ef4036;
            color: #fff;
            border-radius: 20px;
            padding: 4px 14px;
            font-size: 14px;
            font-weight: 700;
        }
        
        .qa {
            padding: 22px 28px;
            background: #fff;
        }
        
        .q {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 14px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        
        .q::before {
            content: "Q";
            color: #ef4036;
            font-size: 24px;
        }
        
        .a {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        
        .a::before {
            content: "A";
            color: #ef4036;
            font-size: 24px;
        }
        
        .a-text {
            font-weight: 400;
            font-size: 17px;
            line-height: 1.5;
        }
        
        .panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .tabs {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
        }
        
        .tab {
            padding: 12px 28px;
            background: #f1f1f1;
            border-radius: 8px 8px 0 0;
            font-weight: 700;
            cursor: pointer;
        }
        
        .tab.active {
            background: #222;
            color: #fff;
        }
        
        .question-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        
        .question-card {
            background: #fff;
            border: 2px solid #222;
            border-radius: 8px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .question-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        
        .status {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
        }
        
        .pending { background: #f7d02c; color: #222; }
        .answered { background: #4ade80; color: #222; }
        
        .modal {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.7);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background: #fff;
            max-width: 620px;
            width: 100%;
            margin: 20px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            overflow: hidden;
        }
        
        .modal-header {
            padding: 20px 28px;
            border-bottom: 1px solid #ddd;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 20px;
            font-weight: 700;
        }
        
        .modal-body {
            padding: 28px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-input, .form-textarea, .form-select {
            width: 100%;
            padding: 14px;
            border: 2px solid #222;
            border-radius: 4px;
            font-size: 17px;
            margin-bottom: 20px;
        }
        
        .form-textarea {
            min-height: 140px;
            resize: vertical;
        }
        
        .login-box {
            max-width: 420px;
            margin: 80px auto;
            background: #fff;
            border: 3px solid #222;
            border-radius: 12px;
            padding: 40px 40px 30px;
        }
        
        .login-box h2 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 28px;
        }
        
        .footer {
            background: #111;
            color: #ddd;
            font-size: 13px;
            padding: 25px 20px 20px;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 18px;
            margin-bottom: 18px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
        }