        :root {
            --primary: #2D3691;
            --primary-dark: #1a237e;
            --primary-light: #3949ab;
            --secondary: #F28A24;
            --secondary-dark: #e65100;
            --secondary-light: #ff9800;
            --white: #ffffff;
            --light-bg: #f8fafc;
            --dark-bg: #0f172a;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --success: #10b981;
            --error: #ef4444;
            --warning: #f59e0b;
            --border: #e2e8f0;
            --gradient-primary: linear-gradient(135deg, #2D3691 0%, #3949ab 100%);
            --gradient-secondary: linear-gradient(135deg, #F28A24 0%, #ff9800 100%);
            --gradient-combined: linear-gradient(135deg, #2D3691 0%, #F28A24 100%);
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', 'Cairo', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
            background-color: var(--light-bg);
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--light-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }

        /* Navigation - Same as Home */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-combined);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-title {
            font-size: 1.25rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
        }

        .logo-subtitle {
            font-size: 0.75rem;
            color: var(--secondary);
            font-weight: 600;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-combined);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a.active {
            color: var(--primary);
        }

        .nav-links a.active::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
        }

        /* Page Header */
        .page-header {
            margin-top: 80px;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
            color: white;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.3;
        }

        .page-header-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .page-header h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
            animation: fadeInUp 0.8s ease;
        }

        .page-header p {
            font-size: 1.25rem;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            opacity: 0.9;
            animation: fadeInUp 0.8s ease 0.1s both;
        }

        .breadcrumb a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .breadcrumb a:hover {
            opacity: 0.7;
        }

        .breadcrumb span {
            opacity: 0.7;
        }

        /* Registration Container */
        .registration-container {
            max-width: 1000px;
            margin: -3rem auto 4rem;
            padding: 0 2rem;
            position: relative;
            z-index: 10;
        }

        /* Tab Switcher */
        .tab-switcher {
            background: white;
            border-radius: 20px;
            padding: 0.5rem;
            display: flex;
            gap: 0.5rem;
            box-shadow: var(--shadow-xl);
            margin-bottom: 2rem;
            position: sticky;
            top: 90px;
            z-index: 100;
        }

        .tab-btn {
            flex: 1;
            padding: 1.25rem 2rem;
            background: transparent;
            border: none;
            border-radius: 15px;
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-light);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            position: relative;
            overflow: hidden;
        }

        .tab-btn i {
            font-size: 1.25rem;
        }

        .tab-btn:hover {
            background: var(--light-bg);
            color: var(--primary);
        }

        .tab-btn.active {
            background: var(--gradient-combined);
            color: white;
            box-shadow: var(--shadow-lg);
        }

        .tab-btn .badge {
            background: var(--secondary);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .tab-btn.active .badge {
            background: rgba(255, 255, 255, 0.3);
        }

        /* Form Card */
        .form-card {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: var(--shadow-xl);
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .form-card.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-header {
            margin-bottom: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--border);
        }

        .form-header h2 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-weight: 800;
        }

        .form-header p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .form-section {
            margin-bottom: 2.5rem;
        }

        .form-section-title {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .form-section-title i {
            color: var(--secondary);
        }

        .form-section-title::after {
            content: '';
            flex: 1;
            height: 2px;
            background: var(--border);
            margin-left: 1rem;
        }

        /* Form Grid */
        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .form-group {
            position: relative;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            display: block;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .form-label .required {
            color: var(--error);
            margin-left: 0.25rem;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            color: var(--text-dark);
            background: white;
            transition: all 0.3s ease;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(45, 54, 145, 0.1);
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: var(--text-light);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            padding-right: 2.5rem;
        }

        .form-hint {
            font-size: 0.875rem;
            color: var(--text-light);
            margin-top: 0.25rem;
        }

        .form-error {
            font-size: 0.875rem;
            color: var(--error);
            margin-top: 0.25rem;
            display: none;
        }

        .form-group.error .form-input,
        .form-group.error .form-select,
        .form-group.error .form-textarea {
            border-color: var(--error);
        }

        .form-group.error .form-error {
            display: block;
        }

        /* Checkbox & Radio */
        .form-checkbox,
        .form-radio {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            cursor: pointer;
            padding: 0.75rem;
            border-radius: 8px;
            transition: background 0.3s ease;
        }

        .form-checkbox:hover,
        .form-radio:hover {
            background: var(--light-bg);
        }

        .form-checkbox input,
        .form-radio input {
            width: 20px;
            height: 20px;
            cursor: pointer;
            accent-color: var(--primary);
            margin-top: 0.125rem;
        }

        .form-checkbox-label,
        .form-radio-label {
            font-size: 0.95rem;
            color: var(--text-dark);
            line-height: 1.5;
        }

        /* File Upload */
        .file-upload {
            border: 2px dashed var(--border);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: var(--light-bg);
        }

        .file-upload:hover {
            border-color: var(--primary);
            background: rgba(45, 54, 145, 0.05);
        }

        .file-upload.dragover {
            border-color: var(--secondary);
            background: rgba(242, 138, 36, 0.05);
        }

        .file-upload-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .file-upload-text {
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .file-upload-hint {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        .file-upload input[type="file"] {
            display: none;
        }

        .file-preview {
            margin-top: 1rem;
            padding: 1rem;
            background: white;
            border-radius: 8px;
            display: none;
            align-items: center;
            gap: 1rem;
        }

        .file-preview.active {
            display: flex;
        }

        .file-preview-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .file-preview-info {
            flex: 1;
        }

        .file-preview-name {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.25rem;
        }

        .file-preview-size {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        .file-preview-remove {
            background: var(--error);
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .file-preview-remove:hover {
            transform: scale(1.1);
        }

        /* Co-authors */
        .co-authors-container {
            margin-top: 1rem;
        }

        .co-author-item {
            background: var(--light-bg);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            position: relative;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .co-author-remove {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--error);
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .co-author-remove:hover {
            transform: scale(1.1);
        }

        .add-co-author-btn {
            background: var(--light-bg);
            border: 2px dashed var(--primary);
            color: var(--primary);
            padding: 1rem;
            border-radius: 12px;
            width: 100%;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .add-co-author-btn:hover {
            background: rgba(45, 54, 145, 0.05);
            border-color: var(--secondary);
            color: var(--secondary);
        }

        /* Submit Button */
        .submit-btn {
            width: 100%;
            padding: 1.25rem 2rem;
            background: var(--gradient-combined);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.125rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            box-shadow: var(--shadow-lg);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .submit-btn .spinner {
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            display: none;
        }

        .submit-btn.loading .spinner {
            display: block;
        }

        .submit-btn.loading .btn-text {
            display: none;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Quick Links */
        .quick-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .quick-link-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--text-dark);
            position: relative;
            overflow: hidden;
        }

        .quick-link-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-combined);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .quick-link-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-2xl);
        }

        .quick-link-card:hover::before {
            transform: scaleX(1);
        }

        .quick-link-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-combined);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
            transition: transform 0.3s ease;
        }

        .quick-link-card:hover .quick-link-icon {
            transform: rotateY(360deg);
        }

        .quick-link-title {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 0.75rem;
            font-weight: 700;
        }

        .quick-link-text {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Toast Notification */
        .toast {
            position: fixed;
            top: 100px;
            right: 2rem;
            background: white;
            border-radius: 12px;
            padding: 1.25rem 1.5rem;
            box-shadow: var(--shadow-2xl);
            display: flex;
            align-items: center;
            gap: 1rem;
            min-width: 320px;
            transform: translateX(400px);
            transition: transform 0.3s ease;
            z-index: 10000;
        }

        .toast.show {
            transform: translateX(0);
        }

        .toast-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .toast.success .toast-icon {
            background: var(--success);
        }

        .toast.error .toast-icon {
            background: var(--error);
        }

        .toast-content {
            flex: 1;
        }

        .toast-title {
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.25rem;
        }

        .toast-message {
            font-size: 0.875rem;
            color: var(--text-light);
        }

        .toast-close {
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            font-size: 1.25rem;
            padding: 0.25rem;
            transition: color 0.3s ease;
        }

        .toast-close:hover {
            color: var(--text-dark);
        }

        /* Footer - Same as Home */
        .footer {
            background: var(--dark-bg);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.875rem;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .form-grid {
                grid-template-columns: 1fr;
            }

            .quick-links {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                box-shadow: var(--shadow-lg);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }

            .nav-links.active {
                transform: translateY(0);
            }

            .mobile-menu-btn {
                display: block;
            }

            .page-header {
                margin-top: 70px;
                padding: 3rem 1rem;
            }

            .registration-container {
                padding: 0 1rem;
                margin-top: -2rem;
            }

            .tab-switcher {
                flex-direction: column;
                position: relative;
                top: 0;
            }

            .tab-btn {
                padding: 1rem;
                font-size: 0.9rem;
            }

            .form-card {
                padding: 2rem 1.5rem;
            }

            .form-header h2 {
                font-size: 1.5rem;
            }

            .form-section-title {
                font-size: 1.1rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .toast {
                right: 1rem;
                left: 1rem;
                min-width: auto;
            }
        }

        @media (max-width: 480px) {
            .form-card {
                padding: 1.5rem 1rem;
            }

            .file-upload {
                padding: 1.5rem 1rem;
            }

            .file-upload-icon {
                font-size: 2rem;
            }

            .co-author-item {
                padding: 1rem;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
        }

                /* ============================================
   PREVIOUS SUBMISSIONS - RADIO BUTTONS
   ============================================ */
.form-section .radio-group {
    display: flex !important;
    flex-direction: column!important;
    gap: 0.75rem !important;
    margin-top: 0.5rem !important;
}

.form-section .radio-option {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 1rem 1.25rem !important;
    background: var(--light-bg) !important;
    border: 2px solid var(--border) !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.radio-option:hover {
    border-color: var(--primary) !important;
    background: rgba(45, 54, 145, 0.05) !important;
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
    margin: 0;
}

.radio-option input[type="radio"]:checked ~ .radio-label {
    color: var(--primary);
    font-weight: 600;
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: var(--primary) !important;
    background: rgba(45, 54, 145, 0.08) !important;
}

.radio-label {
    font-size: 1rem !important;
    color: var(--text-dark) !important;
    user-select: none !important;
}

/* Conditional Fields Animation */
.conditional-fields {
    grid-column: 1 / -1 ;
    display: grid ;
    grid-template-columns: repeat(2, 1fr) ;
    gap: 1.5rem ;
    padding: 1.5rem ;
    background: rgba(242, 138, 36, 0.05) ;
    border: 2px dashed var(--secondary) ;
    border-radius: 12px ;
    margin-top: 1rem ;
    animation: slideDown 0.3s ease ;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .conditional-fields {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   WORD COUNTER - ABSTRACT CONTENT
   ============================================ */
.word-counter-box {
    background: linear-gradient(135deg, rgba(45, 54, 145, 0.05) 0%, rgba(242, 138, 36, 0.05) 100%);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.word-counter-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.word-counter-info i {
    color: var(--primary);
    font-size: 1.25rem;
}

.word-counter-info strong {
    color: var(--secondary);
    font-weight: 700;
}

.word-counter-display {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    background: white;
    border-radius: 50px;
    border: 2px solid var(--primary);
}

.word-counter-display.warning {
    color: var(--warning);
    border-color: var(--warning);
    background: rgba(245, 158, 11, 0.05);
}

.word-counter-display.error {
    color: var(--error);
    border-color: var(--error);
    background: rgba(239, 68, 68, 0.05);
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Individual Textarea Word Count */
.textarea-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.word-count-indicator {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    background: var(--light-bg);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.word-count-indicator.warning {
    color: var(--warning);
    background: rgba(245, 158, 11, 0.1);
}

.word-count-indicator.error {
    color: var(--error);
    background: rgba(239, 68, 68, 0.1);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .word-counter-box {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .word-counter-info {
        justify-content: center;
    }
    
    .word-counter-display {
        align-self: center;
    }
    
    .radio-group {
        gap: 0.5rem;
    }
    
    .radio-option {
        padding: 0.875rem 1rem;
    }
}
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
