        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
            color: #e0e0e0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .container {
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            background: rgba(30, 30, 46, 0.95);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                        0 0 0 1px rgba(79, 172, 254, 0.1);
            backdrop-filter: blur(10px);
        }

        .header {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(79, 172, 254, 0.3);
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 10px,
                rgba(255, 255, 255, 0.05) 10px,
                rgba(255, 255, 255, 0.05) 20px
            );
            animation: headerShine 20s linear infinite;
        }

        @keyframes headerShine {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(50%, 50%);
            }
        }

        .header h1 {
            font-size: 2.3rem;
            color: white;
            margin-bottom: 10px;
            font-weight: 700;
            text-shadow: 
                -2px -2px 0 #000,
                2px -2px 0 #000,
                -2px 2px 0 #000,
                2px 2px 0 #000,
                0 4px 15px rgba(0, 0, 0, 0.6);
            position: relative;
            z-index: 1;
            letter-spacing: 1px;
        }

        .header p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1rem;
            text-shadow: 
                -1px -1px 0 #000,
                1px -1px 0 #000,
                -1px 1px 0 #000,
                1px 1px 0 #000,
                0 2px 8px rgba(0, 0, 0, 0.5);
            position: relative;
            z-index: 1;
        }

        .form-content {
            padding: 30px;
            padding-bottom: 150px;
            max-height: calc(90vh - 120px);
            overflow-y: auto;
            overflow-x: hidden;
        }

        .form-content::-webkit-scrollbar {
            width: 10px;
        }

        .form-content::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 5px;
        }

        .form-content::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
            border-radius: 5px;
            border: 2px solid rgba(0, 0, 0, 0.3);
        }

        .form-content::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #3a3a3a, #2a2a2a);
        }

        .form-content {
            scrollbar-width: thin;
            scrollbar-color: #2a2a2a rgba(0, 0, 0, 0.3);
        }

        .login-container {
            text-align: center;
            padding: 40px 20px;
        }

        .login-container h2 {
            color: #4facfe;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .login-container p {
            color: #b0b0b0;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .discord-login-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 32px;
            background: #5865F2;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
        }

        .discord-login-btn:hover {
            background: #4752C4;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(88, 101, 242, 0.5);
        }

        .discord-login-btn svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .user-info {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: rgba(79, 172, 254, 0.1);
            border: 1px solid rgba(79, 172, 254, 0.3);
            border-radius: 8px;
            margin-bottom: 24px;
        }

        .user-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 2px solid #4facfe;
        }

        .user-details {
            flex: 1;
            text-align: left;
        }

        .user-name {
            font-weight: 600;
            color: #4facfe;
            font-size: 1.1rem;
        }

        .user-id {
            font-size: 0.85rem;
            color: #888;
        }

        .logout-btn {
            padding: 8px 16px;
            background: rgba(220, 53, 69, 0.8);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .logout-btn:hover {
            background: rgba(220, 53, 69, 1);
        }

        .message {
            padding: 16px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: none;
            font-size: 0.9rem;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .success-message {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
        }

        .error-message {
            background: linear-gradient(135deg, #dc3545, #c82333);
            color: white;
        }

        .warning-message {
            background: linear-gradient(135deg, #ffc107, #ff8f00);
            color: #000;
        }

        .processing-message {
            background: linear-gradient(135deg, #17a2b8, #138496);
            color: white;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #4facfe;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .required {
            color: #ff6b6b;
        }

        input[type="text"],
        input[type="url"],
        select,
        textarea {
            width: 100%;
            padding: 12px 16px;
            background: rgba(20, 20, 32, 0.8);
            border: 1px solid rgba(79, 172, 254, 0.3);
            border-radius: 8px;
            color: #e0e0e0;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: #4facfe;
            background: rgba(20, 20, 32, 0.95);
            box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
        }

        textarea {
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
        }

        select {
            cursor: pointer;
        }

        select option {
            background: #1a1a2e;
            color: #e0e0e0;
        }

        .patterns-btn {
            width: 100%;
            padding: 12px 16px;
            background: rgba(20, 20, 32, 0.8);
            border: 1px solid rgba(79, 172, 254, 0.3);
            border-radius: 8px;
            color: #e0e0e0;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .patterns-btn:hover {
            border-color: #4facfe;
            background: rgba(20, 20, 32, 0.95);
        }

        .modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal.show {
            display: flex;
        }

        .modal-content {
            background: rgba(20, 20, 30, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 30px;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .modal-title {
            font-size: 1.5em;
            background: linear-gradient(90deg, #4facfe, #f093fb);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.5em;
            cursor: pointer;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            transition: background 0.2s;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .filter-section {
            margin-bottom: 24px;
        }

        .filter-options {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .filter-option {
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            color: rgba(255, 255, 255, 0.8);
            cursor: pointer;
            transition: all 0.2s;
            font-size: 0.9em;
        }

        .filter-option.active {
            background: linear-gradient(135deg, #4facfe, #00f2fe);
            border-color: transparent;
            color: white;
        }

        .submit-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #4facfe, #00f2fe);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .submit-btn:disabled {
            background: linear-gradient(135deg, #555, #666);
            cursor: not-allowed;
            transform: none;
        }

        .help-text {
            font-size: 0.85rem;
            color: #888;
            margin-top: 6px;
        }

        .help-link {
            color: #4facfe;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: border-color 0.2s;
        }

        .help-link:hover {
            border-bottom-color: #4facfe;
        }

        @media (max-width: 768px) {
            .container {
                max-height: 95vh;
            }

            .header {
                padding: 20px;
            }

            .header h1 {
                font-size: 1.5rem;
            }

            .form-content {
                padding: 20px;
                max-height: calc(95vh - 100px);
            }
        }
