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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
}

.hijjaze-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
}

.hijazi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
}

.kashaf-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #ffd700, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lutfurrahman-user-profile {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lutfurrahman-user-profile:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.zulqarnain-profile-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hajaze-profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffd700;
}

.taqweem-username {
    font-weight: bold;
    color: #ffd700;
}

.kashaf-hijjaze-main-content {
    text-align: center;
    padding: 60px 0;
}

.hijjjjaze-welcome-section {
    margin-bottom: 80px;
}

.hii-welcome-text {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.kashaf-description {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hijjaze-scroll-section {
    margin: 100px 0;
    opacity: 0;
    transform: translateY(50px);
    animation: scrollReveal 1s ease 1s both;
}

.hajaze-content-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.hijazi-feature-block {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hijazi-feature-block:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hijazi-feature-block h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.kashaf-start-section {
    margin-top: 60px;
}

.taqweem-start-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    border: none;
    padding: 20px 50px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.taqweem-start-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

/* Modal Styles */
.zulqarnain-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.lutfurrahman-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    min-width: 400px;
    max-width: 90%;
    text-align: center;
}

.lutfurrahman-modal-content h3 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #ffd700;
}

.hijjaze-username-input {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.hijjaze-username-input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.hajaze-photo-section {
    margin: 20px 0;
}

.kashaf-photo-label {
    display: block;
    margin-bottom: 10px;
    color: #ffd700;
    font-weight: bold;
}

.hijazi-photo-input {
    margin-bottom: 15px;
}

.taqweem-photo-preview {
    margin: 15px 0;
}

.taqweem-photo-preview img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffd700;
}

.hijjjjaze-save-btn {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hijjjjaze-save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

/* Stats Modal */
.hii-stats-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.kashaf-hijjaze-stats-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    min-width: 500px;
    max-width: 90%;
    text-align: center;
}

.kashaf-hijjaze-stats-content h3 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #ffd700;
}

.hijjaze-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.hajaze-stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.hijazi-stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.kashaf-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
}

.taqweem-best-records {
    margin: 20px 0;
}

.zulqarnain-record-btn {
    background: linear-gradient(45deg, #17a2b8, #138496);
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zulqarnain-record-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.4);
}

.lutfurrahman-close-btn {
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.lutfurrahman-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .kashaf-title {
        font-size: 1.8rem;
    }
    
    .hii-welcome-text {
        font-size: 2rem;
    }
    
    .hijazi-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .hajaze-content-blocks {
        grid-template-columns: 1fr;
    }
    
    .lutfurrahman-modal-content {
        min-width: 300px;
        padding: 30px 20px;
    }
    
    .hijjaze-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .kashaf-hijjaze-stats-content {
        min-width: 350px;
    }
}

@media (max-width: 480px) {
    .hijjaze-container {
        padding: 10px;
    }
    
    .kashaf-title {
        font-size: 1.5rem;
    }
    
    .taqweem-start-btn {
        padding: 15px 30px;
        font-size: 1.2rem;
    }
}
.correct { color: green; }
.wrong { color: red; text-decoration: underline; }
.current { background: yellow; }