* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #181726;
    color: #fff;
    padding-bottom: 45px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(90deg, #6a5af9, #ffe066, #6a5af9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 5px 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

/* Header Styles */
header {
    background: #232135;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.language-selector, .chat-icon {
    color: #ffe066;
}

/* Image Slider */
.image-slider {
    width: 100%;
    padding: 10px;
    background-color: #fff;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 200px; /* Standardized height for mobile */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.slider-track {
    display: flex;
    width: 400%; /* 100% × number of slides */
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 25%; /* 100% ÷ number of slides */
    height: 100%;
    flex-shrink: 0;
}

.slide picture {
    width: 100%;
    height: 100%;
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures images maintain aspect ratio while filling the container */
    display: block;
}

.slider-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-dot.active {
    background-color: #fff;
}

/* Media query for larger screens */
@media (min-width: 768px) {
    .slider-container {
        height: 300px; /* Taller height for tablets */
    }
}

@media (min-width: 1024px) {
    .slider-container {
        height: 400px; /* Even taller for desktop */
    }
}

/* Notification Banner */
.notification-banner {
    background-color: #fff;
    padding: 15px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
}

.notification-slider {
    display: flex;
    animation: slide 50s linear infinite;
    width: max-content;
}

.notification-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 50px;
    white-space: nowrap;
}

.notification-message span {
    color: #007bff;
}

.notification-message p {
    font-size: 14px;
    color: #333;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* When hovering over the banner, pause the animation */
.notification-banner:hover .notification-slider {
    animation-play-state: paused;
}

/* Grid Container */
.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
    margin-bottom: 20px;
}

.grid-item {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    user-select: none;
    border: 2px solid transparent;
}

.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.grid-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,123,255,0.15);
    border-color: rgba(0,123,255,0.2);
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}

.grid-item:hover::before {
    left: 100%;
}

.grid-item:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 4px 15px rgba(0,123,255,0.2);
    transition: all 0.1s ease;
}

.grid-item span {
    font-size: 28px;
    color: #007bff;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.grid-item:hover span {
    color: #0056b3;
    transform: scale(1.1) translateY(-2px);
    text-shadow: 0 2px 8px rgba(0,123,255,0.3);
}

.grid-item p {
    font-size: 14px;
    color: #333;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0;
}

.grid-item:hover p {
    color: #0056b3;
    font-weight: 600;
    transform: translateY(-1px);
}

/* Special styling for active/featured cards */
.grid-item.featured {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.grid-item.featured span,
.grid-item.featured p {
    color: white;
}

.grid-item.featured:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0,123,255,0.4);
}

/* Mobile touch feedback */
@media (max-width: 768px) {
    .grid-item {
        padding: 18px;
        min-height: 100px;
    }
    
    .grid-item:active {
        background: #f0f8ff;
        transform: scale(0.95);
    }
    
    .grid-item span {
        font-size: 26px;
    }
    
    .grid-item p {
        font-size: 13px;
    }
}

/* Accessibility improvements */
.grid-item:focus {
    outline: 3px solid rgba(0,123,255,0.5);
    outline-offset: 2px;
}

.grid-item:focus:not(:focus-visible) {
    outline: none;
}

/* Loading state for cards */
.grid-item.loading {
    pointer-events: none;
    opacity: 0.7;
}

.grid-item.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #007bff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Enhanced Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    animation: iconPulse 1s ease;
}

.modal-icon.coming-soon {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: white;
}

.modal-icon.company {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.modal-icon.download {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.modal-content h3 {
    color: #232135;
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: bold;
}

.modal-content p {
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.6;
    font-size: 16px;
}

.company-info {
    text-align: left;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #007bff;
}

.company-info p {
    margin: 0 0 15px 0;
    font-size: 14px;
}

.company-info p:last-child {
    margin-bottom: 0;
}

.download-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.download-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: left;
}

.download-option .material-icons {
    font-size: 32px;
    color: #007bff;
}

.download-option div {
    flex: 1;
}

.download-option strong {
    display: block;
    color: #232135;
    font-size: 16px;
    margin-bottom: 4px;
}

.download-option p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.download-note {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #007bff;
    font-size: 14px;
    color: #0056b3;
    margin: 20px 0;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.modal-actions .btn {
    flex: 1;
    min-width: 120px;
}

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

@keyframes iconPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Button Styles for Modals */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-height: 44px;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
    background: #6c757d;
    color: white;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2);
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn .material-icons {
    font-size: 18px;
}

/* Mobile Modal Responsiveness */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 30px 20px;
        margin: 10px;
    }
    
    .modal-content h3 {
        font-size: 20px;
    }
    
    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .download-options {
        gap: 12px;
    }
    
    .download-option {
        padding: 12px;
    }
    
    .download-option .material-icons {
        font-size: 28px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
    }
    
    .company-info {
        padding: 15px;
    }
}

/* Promo Banner */
.promo-banner {
    padding: 0;
    margin-bottom: 20px;
    width: 100%;
}

.promo-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #232135;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 8px 0;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.2);
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #bdbdbd;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    font: inherit;
    padding: 8px 8px 4px 8px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
    border-radius: 8px;
    min-width: 0;
    min-height: 45px;
    user-select: none;
    text-decoration: none;
    margin: 0;
}

.nav-item span {
    font-size: 22px;
}

.nav-item p {
    font-size: 12px;
    margin: 0;
    font-weight: 500;
}

.nav-item.active,
.nav-item:focus,
.nav-item:hover {
    background: #28263a;
    color: #ffe066;
    box-shadow: 0 2px 8px rgba(255, 230, 102, 0.12);
    outline: none;
    transform: translateY(-2px) scale(1.08);
}

@media (min-width: 768px) {
    .bottom-nav {
        padding: 10px 0;
    }
    .nav-item {
        padding: 10px 12px 6px 12px;
        min-height: 50px;
    }
    .nav-item span {
        font-size: 24px;
    }
    .nav-item p {
        font-size: 12px;
    }
    body {
        padding-bottom: 50px;
    }
    .whatsapp-float {
        bottom: 70px;
    }
}

@media (min-width: 1024px) {
    .bottom-nav {
        max-width: 1200px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 16px 16px 0 0;
        padding: 12px 0;
    }
    .nav-item {
        padding: 12px 16px 8px 16px;
        min-height: 55px;
    }
    .nav-item span {
        font-size: 26px;
    }
    .nav-item p {
        font-size: 13px;
    }
    body {
        padding-bottom: 55px;
    }
    .whatsapp-float {
        bottom: 75px;
    }
}

/* Media Queries for larger screens */
@media (min-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    body {
        max-width: 1200px;
        margin: 0 auto;
    }
} 

/* Task Hall Section */
.task-section {
    background-color: #fff;
    margin: 10px;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.task-title {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #111;
    margin-bottom: 10px;
}

.section-header {
    margin-bottom: 0;
    display: block;
}

/* Current Level Display */
.current-level-display {
    text-align: center;
    margin: 15px 0 10px 0;
}

.current-level-text {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    animation: levelPulse 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    transform-origin: center;
}

@keyframes levelPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.1);
        filter: brightness(1.2);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 50% 100%;
    }
    75% {
        background-position: 50% 0%;
    }
}

/* Level-specific colors */
.current-level-text.intern {
    background: linear-gradient(45deg, #6a5af9, #4839ac, #6a5af9);
    background-size: 200% 200%;
}

.current-level-text.j1 {
    background: linear-gradient(45deg, #007bff, #0056b3, #007bff);
    background-size: 200% 200%;
}

.current-level-text.j2 {
    background: linear-gradient(45deg, #ffe066, #ffd700, #ffed4e);
    background-size: 200% 200%;
}

.current-level-text.j3 {
    background: linear-gradient(45deg, #28a745, #1e7e34, #28a745);
    background-size: 200% 200%;
}

.task-tabs {
    display: flex;
    gap: 20px;
    margin-top: 0;
    margin-bottom: 10px;
    justify-content: flex-start;
}

.tab-btn {
    background: linear-gradient(90deg, #0d47a1 0%, #1976d2 100%);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(13, 71, 161, 0.15);
    padding: 6px 28px;
    font-size: 15px;
    cursor: pointer;
    min-width: 90px;
    transition: background 0.2s;
    letter-spacing: 0.5px;
}

.tab-btn:focus {
    outline: 2px solid #1976d2;
}

.task-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.task-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.task-item picture {
    width: 100%;
    height: 100%;
    display: block;
}

.task-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.task-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 4px;
}

.task-price {
    color: #007bff;
    font-weight: 500;
    font-size: 14px;
}

/* Membership List Section */
.membership-section {
    background-color: #fff;
    margin: 10px;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.membership-section h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.membership-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.member-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.member-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Remove the material icons specific styling */
.member-avatar .material-icons {
    display: none;
}

.member-info {
    flex: 1;
}

.member-name {
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
}

.member-status {
    font-size: 12px;
    color: #28a745;
}

.member-amount {
    font-size: 14px;
    color: #007bff;
    font-weight: 500;
}

@media (min-width: 768px) {
    .task-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .task-grid {
        grid-template-columns: repeat(5, 1fr);
    }
} 

/* Profile Banner */
.profile-banner {
    background: #232135;
    color: #fff;
    border-radius: 0 0 16px 16px;
    padding: 24px 0 0 0;
    position: relative;
    margin-bottom: 12px;
    min-height: 180px;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
}
.profile-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: none;
    opacity: 0.08;
    z-index: 1;
    border-radius: 0 0 16px 16px;
}
.profile-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}
.profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffe066;
    margin-bottom: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    background: #181726;
}
.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-id {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
}
.profile-purse {
    font-size: 13px;
    color: #ffe066;
    opacity: 0.9;
}
.profile-balance-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 24px 12px 24px;
    position: relative;
    z-index: 2;
}
.profile-balance, .profile-identity {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.profile-balance-label, .profile-identity-label {
    font-size: 13px;
    color: #bdbdbd;
    opacity: 0.8;
}
.profile-balance-value {
    font-size: 32px;
    font-weight: bold;
    margin-top: 2px;
    color: #ffe066;
}
.profile-identity-value {
    font-size: 18px;
    font-weight: bold;
    margin-top: 2px;
    color: #ffe066;
}
.profile-identity {
    align-items: flex-end;
}

/* Profile Stats Grid */
.profile-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 12px 10px 0 10px;
    margin-bottom: 18px;
}
.profile-stat {
    background: #232135;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.18);
    padding: 16px 0 10px 0;
    text-align: center;
    font-size: 15px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.profile-stat div:last-child {
    font-size: 20px;
    font-weight: bold;
    color: #ffe066;
}

/* Profile Menu List */
.profile-menu-list {
    background: #232135;
    border-radius: 12px;
    margin: 0 10px 80px 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.18);
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    border-bottom: 1px solid #28263a;
    transition: background 0.15s;
}
.profile-menu-item:last-child {
    border-bottom: none;
}
.profile-menu-item:hover {
    background: #28263a;
}
.profile-menu-item .material-icons {
    font-size: 22px;
    color: #6a5af9;
}

@media (min-width: 600px) {
    .profile-banner {
        min-height: 220px;
    }
    .profile-avatar {
        width: 70px;
        height: 70px;
    }
    .profile-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
} 

.coming-soon-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.coming-soon-container h1 {
    font-size: 2rem;
    color: #ffe066;
    font-weight: bold;
    letter-spacing: 1px;
} 

/* Hero Section */
.hero-section {
    width: 100%;
    padding: 10px;
    background-color: #fff;
    margin-bottom: 20px;
}

.hero-banner {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Profits Section */
.profits-section {
    background-color: #fff;
    margin: 10px;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.profits-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #111;
    margin-bottom: 20px;
}

.profits-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.profit-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.profit-stat .material-icons {
    font-size: 28px;
    color: #007bff;
}

.stat-info {
    flex: 1;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 18px;
    font-weight: bold;
    color: #111;
}

.profits-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.action-btn.primary {
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.2);
}

.action-btn.primary:hover {
    background: linear-gradient(90deg, #0056b3, #004085);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.action-btn.secondary {
    background: #f8f9fa;
    color: #007bff;
    border: 2px solid #007bff;
}

.action-btn.secondary:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.action-btn .material-icons {
    font-size: 20px;
}

/* Media Queries for Profits Page */
@media (min-width: 768px) {
    .profits-stats {
        grid-template-columns: repeat(3, 1fr);
        display: grid;
    }
    
    .profits-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .action-btn {
        min-width: 200px;
    }
} 

/* Income Details Section */
.income-details-section {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin: 20px 10px;
    padding: 20px 10px 24px 10px;
}

.income-table-wrapper {
    overflow-x: auto;
    margin-bottom: 18px;
}

.income-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    font-size: 15px;
}

.income-table th, .income-table td {
    padding: 10px 8px;
    text-align: center;
}

.income-table th {
    background: #232135;
    color: #ffe066;
    font-weight: 600;
    border-bottom: 2px solid #eee;
}

.income-table tr:nth-child(even) {
    background: #f8f9fa;
}

.income-table tr:nth-child(odd) {
    background: #fff;
}

.income-table td {
    color: #232135;
    border-bottom: 1px solid #eee;
}

.income-table tr:last-child td {
    border-bottom: none;
}

/* Intern Info Card (Banner Style) */
.intern-info-card {
    background: #232135;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    margin-top: 10px;
    margin-bottom: 18px;
    padding: 0 0 18px 0;
    overflow: hidden;
    text-align: center;
    color: #fff;
}
.intern-banner {
    background: linear-gradient(90deg, #6a5af9, #ffe066 80%, #6a5af9);
    color: #232135;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    padding: 18px 0 12px 0;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    letter-spacing: 1px;
}
.intern-desc {
    color: #ffe066;
    font-size: 1rem;
    padding: 18px 18px 10px 18px;
    text-align: left;
    line-height: 1.6;
}
@media (max-width: 600px) {
    .intern-info-card {
        padding: 0 0 12px 0;
    }
    .intern-desc {
        padding: 10px 10px 0 10px;
        font-size: 0.98rem;
    }
    .intern-banner {
        font-size: 1.15rem;
        padding: 14px 0 8px 0;
    }
}
/* Remove old intern-info-card h3/p styles */
.intern-info-card h3, .intern-info-card p { display: none; }

@media (min-width: 768px) {
    .income-details-section {
        padding: 32px 32px 32px 32px;
        margin: 32px auto;
        max-width: 900px;
    }
    .income-table th, .income-table td {
        padding: 14px 12px;
    }
    .intern-info-card {
        font-size: 16px;
        padding: 20px 32px;
    }
} 

/* Level Details Cards Section */
.level-details-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
}

.level-card {
    display: flex;
    align-items: flex-start;
    background: #232135;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    padding: 18px 18px 18px 0;
    position: relative;
    min-height: 70px;
    border: 1px solid #28263a;
}

.level-label {
    min-width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    border-radius: 50%;
    margin-right: 18px;
    margin-left: 18px;
    margin-top: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex-shrink: 0;
}
.level-label.intern { background: #6a5af9; }
.level-label.j1 { background: #007bff; }
.level-label.j2 { background: #ffe066; color: #232135; }
.level-label.j3 { background: #6a5af9; }
.level-label.j4 { background: #28a745; }
.level-label.j5 { background: #ff9800; }
.level-label.j6 { background: #00bcd4; }
.level-label.j7 { background: #e91e63; }
.level-label.j8 { background: #8bc34a; }
.level-label.j9 { background: #9c27b0; }
.level-label.j10 { background: #f44336; }
.level-label.j11 { background: #607d8b; }

.level-desc {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
    padding-top: 2px;
}

.level-label.j2 {
    color: #232135;
    background: #ffe066;
}

@media (max-width: 600px) {
    .level-card {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 10px 14px 10px;
    }
    .level-label {
        margin: 0 0 10px 0;
        align-self: flex-start;
    }
} 

.invitation-reward-card {
    background: #232135;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    margin: 32px 10px 0 10px;
    padding: 0 0 18px 0;
    overflow: hidden;
    color: #fff;
}
.invitation-reward-header {
    background: linear-gradient(90deg, #6a5af9, #ffe066 80%, #6a5af9);
    color: #232135;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    padding: 18px 0 12px 0;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    letter-spacing: 1px;
}
.invitation-reward-table-wrapper {
    overflow-x: auto;
    margin: 0 0 18px 0;
}
.invitation-reward-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    font-size: 15px;
    margin: 0 auto;
}
.invitation-reward-table th, .invitation-reward-table td {
    padding: 10px 8px;
    text-align: center;
}
.invitation-reward-table th {
    background: #181726;
    color: #ffe066;
    font-weight: 600;
    border-bottom: 2px solid #28263a;
    font-size: 15px;
}
.invitation-reward-table td {
    color: #fff;
    border-bottom: 1px solid #28263a;
}
.invitation-reward-table tr:last-child td {
    border-bottom: none;
}
.reward-rate {
    color: #ff9800;
    font-weight: bold;
    font-size: 13px;
}
.invitation-reward-rules {
    background: #181726;
    color: #ffe066;
    border-radius: 0 0 14px 14px;
    padding: 18px 18px 10px 18px;
    font-size: 15px;
    margin-top: 0;
    line-height: 1.6;
}
@media (min-width: 768px) {
    .invitation-reward-card {
        margin: 32px auto 0 auto;
        max-width: 900px;
    }
    .invitation-reward-table th, .invitation-reward-table td {
        padding: 14px 12px;
    }
    .invitation-reward-rules {
        font-size: 16px;
        padding: 22px 32px 16px 32px;
    }
} 

.task-management-reward-card {
    background: #232135;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    margin: 32px 10px 0 10px;
    padding: 0 0 18px 0;
    overflow: hidden;
    color: #fff;
}
.task-management-reward-header {
    background: linear-gradient(90deg, #6a5af9, #ffe066 80%, #6a5af9);
    color: #232135;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    padding: 18px 0 12px 0;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    letter-spacing: 1px;
}
.task-management-reward-table-wrapper {
    overflow-x: auto;
    margin: 0 0 18px 0;
}
.task-management-reward-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    font-size: 15px;
    margin: 0 auto;
}
.task-management-reward-table th, .task-management-reward-table td {
    padding: 10px 8px;
    text-align: center;
}
.task-management-reward-table th {
    background: #181726;
    color: #ffe066;
    font-weight: 600;
    border-bottom: 2px solid #28263a;
    font-size: 15px;
}
.task-management-reward-table td {
    color: #fff;
    border-bottom: 1px solid #28263a;
}
.task-management-reward-table tr:last-child td {
    border-bottom: none;
}
.task-management-reward-rules {
    background: #181726;
    color: #ffe066;
    border-radius: 0 0 14px 14px;
    padding: 18px 18px 10px 18px;
    font-size: 15px;
    margin-top: 0;
    line-height: 1.6;
}
@media (min-width: 768px) {
    .task-management-reward-card {
        margin: 32px auto 0 auto;
        max-width: 900px;
    }
    .task-management-reward-table th, .task-management-reward-table td {
        padding: 14px 12px;
    }
    .task-management-reward-rules {
        font-size: 16px;
        padding: 22px 32px 16px 32px;
    }
} 

.management-fee-example {
    margin: 18px 0 12px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.fee-box {
    background: #6a5af9;
    border-radius: 12px;
    padding: 10px 18px 10px 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px rgba(106,90,249,0.10);
    font-size: 1.08em;
}
.fee-label {
    font-weight: bold;
    font-size: 1.08em;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}
.fee-formula {
    font-size: 1.15em;
    color: #ff3333;
    font-weight: bold;
    margin-top: 2px;
}
.fee-result {
    color: #ff3333;
    font-weight: bold;
    font-size: 1.1em;
}
@media (max-width: 600px) {
    .fee-box {
        padding: 10px 8px 10px 8px;
        font-size: 1em;
    }
} 

/* VIP Levels Section */
.vip-levels-section {
    padding: 20px 10px;
}

.vip-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #ffe066;
    margin-bottom: 24px;
}

.vip-cards {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    max-width: 1200px;
    margin: 0 auto;
}

.vip-card {
    background: #232135;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border: 1px solid #28263a;
}

.vip-card-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vip-card-header.intern { background: linear-gradient(135deg, #6a5af9 0%, #4839ac 100%); }
.vip-card-header.j1 { background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); }
.vip-card-header.j2 { background: linear-gradient(135deg, #ffe066 0%, #ffd700 100%); }
.vip-card-header.j3 { background: linear-gradient(135deg, #6a5af9 0%, #4839ac 100%); }

.level-name {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.vip-card-header.j2 .level-name {
    color: #232135;
}

.level-badge {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.vip-card-content {
    padding: 20px;
}

.vip-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #28263a;
}

.vip-detail:last-child {
    border-bottom: none;
}

.detail-label {
    color: #bdbdbd;
    font-size: 14px;
}

.detail-value {
    color: #ffe066;
    font-weight: bold;
    font-size: 16px;
}

@media (min-width: 768px) {
    .vip-cards {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

@media (min-width: 1024px) {
    .vip-cards {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .vip-levels-section {
        padding: 40px 20px;
    }
} 

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 65px; /* Position above the bottom nav */
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 99;
    transition: transform 0.2s;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
}

.whatsapp-icon {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 75px;
    }
} 