/* Employee Attendance System - Styles - Enhanced Version */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --light-bg: #f9fafb;
    --border-color: #e5e7eb;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 10px 13px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.eas-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Header */
.eas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--primary-gradient);
    border-radius: 16px;
    color: white;
    box-shadow: var(--card-shadow);
}

.eas-header-content h1 {
    font-size: 32px;
    margin-bottom: 8px;
    font-weight: 700;
}

.eas-header-content p {
    font-size: 15px;
    opacity: 0.95;
}

.eas-header-actions {
    display: flex;
    gap: 15px;
}

/* Buttons */
.eas-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.eas-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.eas-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.eas-btn-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.eas-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.eas-btn-filter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
}

.eas-btn-filter:hover {
    transform: translateY(-2px);
}

.eas-btn-cancel {
    background-color: #e5e7eb;
    color: #1f2937;
}

.eas-btn-cancel:hover {
    background-color: #d1d5db;
}

.eas-btn-danger {
    background-color: #ef4444;
    color: white;
    padding: 8px 16px;
    font-size: 13px;
}

.eas-btn-danger:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

/* Section */
.eas-section {
    margin-bottom: 50px;
}

.eas-section-title {
    font-size: 26px;
    margin-bottom: 25px;
    color: var(--text-primary);
    font-weight: 700;
}

/* Cards Grid */
.eas-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.eas-card {
    background: white;
    padding: 25px;
    border-radius: 14px;
    border-left: 5px solid;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.eas-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, currentColor);
}

.eas-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.eas-card-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.eas-card-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.eas-card-delay {
    font-size: 28px;
    font-weight: 800;
    color: #ef4444;
    margin-bottom: 5px;
}

.eas-card-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.eas-award-card-small {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-left-color: #fbbf24;
    position: relative;
}

.eas-award-card-small .eas-card-name {
    color: #fbbf24;
    font-size: 20px;
}

.eas-award-card-small .eas-card-label {
    color: rgba(255, 255, 255, 0.9);
}

.eas-award-card-small .eas-card-delay {
    color: #fbbf24;
    font-size: 32px;
}

.eas-award-ribbon-small {
    position: absolute;
    top: -12px;
    right: 15px;
    background: #fbbf24;
    color: #1f2937;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.eas-card-absence {
    font-size: 12px;
    color: #991b1b;
    background-color: #fee2e2;
    padding: 8px;
    border-radius: 6px;
    margin-top: 12px;
    font-weight: 600;
}

.eas-card-bonus {
    font-size: 13px;
    color: #92400e;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 10px;
    border-radius: 8px;
    margin-top: 12px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.1);
    border: 1px solid #fbbf24;
    transition: all 0.3s ease;
}

.eas-card-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.2);
}

/* Filters */
.eas-filters {
    margin-bottom: 40px;
    padding: 25px;
    background: white;
    border-radius: 14px;
    box-shadow: var(--card-shadow);
}

.eas-filter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.eas-input,
.eas-select {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.eas-input:focus,
.eas-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

/* Table */
.eas-table-wrapper {
    overflow-x: auto;
    border-radius: 14px;
    background: white;
    box-shadow: var(--card-shadow);
}

.eas-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

.eas-table thead {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-bottom: 2px solid var(--border-color);
}

.eas-table th {
    padding: 18px;
    text-align: right;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 14px;
}

.eas-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}

.eas-table tbody tr {
    transition: all 0.2s ease;
}

.eas-table tbody tr:hover {
    background-color: #f9fafb;
}

/* Status Badge */
.eas-status {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.eas-status-present {
    background-color: #d1fae5;
    color: #065f46;
}

.eas-status-late {
    background-color: #fef3c7;
    color: #92400e;
}

.eas-status-absent {
    background-color: #fee2e2;
    color: #991b1b;
}

/* Action Buttons */
.eas-action-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    margin: 0 6px;
    transition: all 0.2s ease;
    padding: 6px;
}

.eas-action-btn:hover {
    transform: scale(1.25);
}

.eas-edit-btn {
    color: #3b82f6;
}

.eas-delete-btn {
    color: #ef4444;
}

/* Modal */
.eas-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.eas-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 35px;
    border-radius: 16px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.eas-modal-content h2 {
    margin-bottom: 25px;
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 700;
}

.eas-modal-close {
    color: var(--text-secondary);
    float: left;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.eas-modal-close:hover {
    color: var(--text-primary);
}

/* Form */
.eas-form-group {
    margin-bottom: 22px;
}

.eas-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.eas-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    direction: rtl;
    transition: all 0.3s ease;
}

.eas-form-control:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.eas-form-control:disabled {
    background-color: #f3f4f6;
    cursor: not-allowed;
    opacity: 0.7;
}

.eas-form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 35px;
}

/* Month Filter */
.eas-month-filter {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.eas-month-filter label {
    font-weight: 600;
    color: var(--text-primary);
}

.eas-month-input {
    padding: 10px 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.eas-month-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .eas-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .eas-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .eas-header-content h1 {
        font-size: 24px;
    }
    
    .eas-header-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .eas-header-actions .eas-btn {
        width: 100%;
        justify-content: center;
    }
    
    .eas-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .eas-filter-form {
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .eas-input,
    .eas-select,
    .eas-btn-filter {
        width: 100%;
    }
    
    .eas-table {
        font-size: 12px;
    }
    
    .eas-table th,
    .eas-table td {
        padding: 12px;
    }
    
    .eas-modal-content {
        width: 95%;
        margin: 20% auto;
        padding: 25px;
    }
    
    .eas-month-filter {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .eas-container {
        padding: 15px 10px;
    }
    
    .eas-header {
        padding: 20px;
    }
    
    .eas-header-content h1 {
        font-size: 20px;
    }
    
    .eas-section-title {
        font-size: 20px;
    }
    
    .eas-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .eas-table-wrapper {
        overflow-x: scroll;
    }
    
    .eas-action-btn {
        font-size: 16px;
        margin: 0 4px;
    }
}


/* Commitment Award Box */
.eas-commitment-award {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.eas-commitment-award::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.eas-award-header {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.eas-award-content {
    position: relative;
    z-index: 1;
}

.eas-award-winner {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: inline-block;
    min-width: 300px;
}

.eas-award-icon {
    font-size: 60px;
    margin-bottom: 15px;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.eas-award-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.eas-award-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.eas-award-delay {
    font-size: 16px;
    color: #f59e0b;
    font-weight: 700;
    padding-top: 15px;
    border-top: 2px solid #fbbf24;
}
/* Commitment Award Box - Enhanced Design */
.eas-commitment-award {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.eas-commitment-award::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.eas-commitment-award::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-25px) scale(1.05);
    }
}

.eas-award-header {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 35px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.eas-award-content {
    position: relative;
    z-index: 2;
}

.eas-award-winner {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 20px;
    padding: 50px 45px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(102, 126, 234, 0.1);
    display: inline-block;
    min-width: 360px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.eas-award-winner:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 70px rgba(102, 126, 234, 0.3), 0 0 0 1px rgba(102, 126, 234, 0.2);
}

.eas-award-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: block;
    animation: bounce 2.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.2));
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

.eas-award-name {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.eas-award-subtitle {
    font-size: 15px;
    color: #667eea;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.eas-award-delay {
    font-size: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 800;
    padding: 15px 25px;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    letter-spacing: 0.5px;
}

/* Password Form Styles */
.eas-password-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.eas-password-box {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.eas-password-box h2 {
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 700;
}

.eas-password-box p {
    color: #6b7280;
    margin-bottom: 30px;
    font-size: 15px;
}

.eas-password-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 20px;
    font-family: inherit;
    direction: rtl;
    transition: all 0.3s ease;
}

.eas-password-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.eas-password-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.eas-password-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.eas-password-btn:active {
    transform: translateY(0);
}
/* Enhanced Award Box Styles */

.eas-award-section {
    margin-bottom: 60px !important;
}

.eas-commitment-award {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 28px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 40px 80px rgba(102, 126, 234, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.eas-commitment-award::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-large 12s ease-in-out infinite;
}

.eas-commitment-award::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-large 15s ease-in-out infinite reverse;
}

@keyframes float-large {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-40px) scale(1.1);
    }
}

.eas-award-decorations {
    position: absolute;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 1;
}

.eas-award-star-left,
.eas-award-star-right {
    font-size: 40px;
    animation: spin 4s linear infinite;
}

.eas-award-star-right {
    animation: spin 4s linear infinite reverse;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.eas-award-header {
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.eas-award-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.eas-award-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.eas-award-winner {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(102, 126, 234, 0.2);
    display: inline-block;
    min-width: 380px;
    border: 3px solid rgba(102, 126, 234, 0.3);
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.eas-award-winner:hover {
    transform: translateY(-15px) scale(1.05) rotateY(5deg);
    box-shadow: 0 50px 100px rgba(102, 126, 234, 0.4), 0 0 0 2px rgba(102, 126, 234, 0.3);
}

.eas-award-ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    letter-spacing: 1px;
    z-index: 10;
}

.eas-award-icon {
    font-size: 100px;
    margin-bottom: 25px;
    display: block;
    animation: bounce-large 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    filter: drop-shadow(0 8px 16px rgba(102, 126, 234, 0.3));
}

@keyframes bounce-large {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.15);
    }
}

.eas-award-name {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.eas-award-subtitle {
    font-size: 16px;
    color: #667eea;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.eas-award-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 3px solid rgba(102, 126, 234, 0.1);
}

.eas-award-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.eas-stat-value {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eas-stat-unit {
    font-size: 14px;
    color: #6b7280;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.eas-award-empty {
    text-align: center;
    padding: 60px 40px;
    color: #667eea;
}

.eas-award-empty .eas-award-icon {
    opacity: 0.5;
    animation: float 4s ease-in-out infinite;
}

.eas-award-empty p {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
}

/* Password Form Enhanced Styles */

.eas-password-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 9999;
}

.eas-password-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-large 15s ease-in-out infinite;
}

.eas-password-container::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-large 20s ease-in-out infinite reverse;
}

.eas-password-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
}

.eas-password-header {
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.eas-password-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: block;
    animation: bounce-large 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.eas-password-header h1 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.eas-password-header p {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.eas-password-form {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
}

.eas-password-input-group {
    position: relative;
    margin-bottom: 30px;
}

.eas-password-input {
    width: 100%;
    padding: 16px 50px 16px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    direction: rtl;
    transition: all 0.4s ease;
    background: #f9fafb;
}

.eas-password-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 6px rgba(102, 126, 234, 0.15);
}

.eas-password-icon-input {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    pointer-events: none;
}

.eas-password-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    letter-spacing: 1px;
}

.eas-password-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.5);
}

.eas-password-btn:active {
    transform: translateY(-2px);
}

.eas-password-footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 600;
}

.eas-password-footer p {
    margin: 0;
    letter-spacing: 0.5px;
}

/* Responsive Design */

@media (max-width: 768px) {
    .eas-commitment-award {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .eas-award-header {
        font-size: 28px;
    }

    .eas-award-winner {
        min-width: 100%;
        max-width: 320px;
        padding: 40px 30px;
    }

    .eas-award-icon {
        font-size: 70px;
        margin-bottom: 20px;
    }

    .eas-award-name {
        font-size: 24px;
    }

    .eas-award-stats {
        gap: 20px;
    }

    .eas-stat-value {
        font-size: 28px;
    }

    .eas-password-content {
        max-width: 100%;
    }

    .eas-password-form {
        padding: 35px 25px;
    }

    .eas-password-header h1 {
        font-size: 28px;
    }

    .eas-password-icon {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .eas-commitment-award {
        padding: 30px 20px;
        border-radius: 16px;
        margin-bottom: 30px;
    }

    .eas-award-header {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .eas-award-description {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .eas-award-winner {
        min-width: 100%;
        padding: 30px 20px;
    }

    .eas-award-icon {
        font-size: 50px;
    }

    .eas-award-name {
        font-size: 20px;
    }

    .eas-award-subtitle {
        font-size: 13px;
    }

    .eas-award-stats {
        flex-direction: column;
        gap: 15px;
    }

    .eas-stat-value {
        font-size: 24px;
    }

    .eas-password-form {
        padding: 25px 15px;
    }

    .eas-password-header h1 {
        font-size: 22px;
    }

    .eas-password-input {
        padding: 14px 40px 14px 14px;
        font-size: 15px;
    }

    .eas-password-btn {
        padding: 14px;
        font-size: 16px;
    }
}
