.fake-email-tool * {
        font-family: 'Inter', sans-serif;
    }
    
    .fake-email-tool {
        --primary-dark: #21232a;
        --primary-green: #03c397;
        --primary-light: #e5e5f0;
        --white: #ffffff;
    }
    
    .fake-email-tool .hero-section {
        background: linear-gradient(135deg, #21232a 0%, #2d3039 50%, #21232a 100%);
        padding: 60px 0 80px;
        position: relative;
        overflow: hidden;
    }
    
    .fake-email-tool .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(3, 195, 151, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(3, 195, 151, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .fake-email-tool .hero-title {
        font-size: 2.75rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
    }
    
    .fake-email-tool .hero-title span {
        background: linear-gradient(135deg, #03c397 0%, #00d4aa 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .fake-email-tool .hero-subtitle {
        font-size: 1.1rem;
        color: #a0a0a0;
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
    }
    
    .fake-email-tool .tool-card {
        background: #ffffff;
        border-radius: 24px;
        box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
        padding: 35px;
        position: relative;
        z-index: 10;
    }
    
    .fake-email-tool .email-display-box {
        background: linear-gradient(135deg, #f8f9fa 0%, #e5e5f0 100%);
        border: 2px dashed #03c397;
        border-radius: 16px;
        padding: 30px 20px;
        text-align: center;
        margin-bottom: 25px;
        position: relative;
    }
    
    .fake-email-tool .email-label {
        font-size: 0.8rem;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
        margin-bottom: 10px;
        display: block;
    }
    
    .fake-email-tool .email-address {
        font-size: 1.4rem;
        font-weight: 700;
        color: #21232a;
        word-break: break-all;
        margin: 15px 0 20px;
        padding: 15px;
        background: white;
        border-radius: 12px;
        border: 2px solid #e5e5f0;
    }
    
    .fake-email-tool .btn-primary-custom {
        background: linear-gradient(135deg, #03c397 0%, #00a87d 100%);
        border: none;
        color: white;
        padding: 12px 24px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(3, 195, 151, 0.3);
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    
    .fake-email-tool .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(3, 195, 151, 0.5);
        color: white;
    }
    
    .fake-email-tool .btn-secondary-custom {
        background: #21232a;
        border: none;
        color: white;
        padding: 12px 24px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    
    .fake-email-tool .btn-secondary-custom:hover {
        background: #2d3039;
        transform: translateY(-3px);
        color: white;
    }
    
    .fake-email-tool .btn-outline-custom {
        background: transparent;
        border: 2px solid #03c397;
        color: #03c397;
        padding: 10px 20px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    
    .fake-email-tool .btn-outline-custom:hover {
        background: #03c397;
        color: white;
    }
    
    .fake-email-tool .timer-badge {
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
        color: white;
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 700;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    }
    
    .fake-email-tool .domain-selector {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .fake-email-tool .domain-selector label {
        font-weight: 600;
        color: #21232a;
        margin-bottom: 12px;
        display: block;
    }
    
    .fake-email-tool .domain-options {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .fake-email-tool .domain-option {
        background: white;
        border: 2px solid #e5e5f0;
        border-radius: 8px;
        padding: 10px 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 500;
        font-size: 0.9rem;
    }
    
    .fake-email-tool .domain-option:hover {
        border-color: #03c397;
        background: #f0fff9;
    }
    
    .fake-email-tool .domain-option.active {
        border-color: #03c397;
        background: linear-gradient(135deg, #e8faf6 0%, #d4f5ed 100%);
        color: #03c397;
        font-weight: 600;
    }
    
    .fake-email-tool .inbox-section {
        background: #f8f9fa;
        border-radius: 16px;
        padding: 25px;
        margin-top: 25px;
        min-height: 350px;
    }
    
    .fake-email-tool .inbox-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid #e5e5f0;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .fake-email-tool .inbox-title {
        font-size: 1.2rem;
        font-weight: 700;
        color: #21232a;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .fake-email-tool .inbox-count {
        background: #03c397;
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    .fake-email-tool .email-item {
        background: white;
        border-radius: 12px;
        padding: 18px;
        margin-bottom: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    
    .fake-email-tool .email-item:hover {
        border-left-color: #03c397;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transform: translateX(5px);
    }
    
    .fake-email-tool .email-item.unread {
        border-left-color: #03c397;
        background: linear-gradient(135deg, #f0fff9 0%, #ffffff 100%);
    }
    
    .fake-email-tool .email-sender {
        font-weight: 700;
        color: #21232a;
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    
    .fake-email-tool .email-subject {
        font-weight: 600;
        color: #444;
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .fake-email-tool .email-preview {
        color: #888;
        font-size: 0.85rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .fake-email-tool .email-time {
        font-size: 0.75rem;
        color: #999;
        white-space: nowrap;
    }
    
    .fake-email-tool .empty-inbox {
        text-align: center;
        padding: 50px 20px;
    }
    
    .fake-email-tool .empty-inbox .empty-icon {
        font-size: 4rem;
        color: #ddd;
        margin-bottom: 20px;
    }
    
    .fake-email-tool .empty-inbox h5 {
        color: #888;
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .fake-email-tool .empty-inbox p {
        color: #aaa;
        font-size: 0.9rem;
    }
    
    .fake-email-tool .feature-section {
        padding: 80px 0;
        background: #f8f9fa;
    }
    
    .fake-email-tool .section-title {
        font-size: 2.25rem;
        font-weight: 800;
        color: #21232a;
        margin-bottom: 15px;
    }
    
    .fake-email-tool .section-subtitle {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 50px;
    }
    
    .fake-email-tool .feature-box {
        background: white;
        border-radius: 16px;
        padding: 30px 25px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid #e5e5f0;
        height: 100%;
    }
    
    .fake-email-tool .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        border-color: #03c397;
    }
    
    .fake-email-tool .feature-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #e8faf6 0%, #d4f5ed 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 1.75rem;
        color: #03c397;
    }
    
    .fake-email-tool .feature-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #21232a;
        margin-bottom: 10px;
    }
    
    .fake-email-tool .feature-desc {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .fake-email-tool .content-section {
        padding: 80px 0;
        background: white;
    }
    
    .fake-email-tool .content-block {
        background: #f8f9fa;
        border-radius: 20px;
        padding: 35px;
        margin-bottom: 25px;
        border-left: 4px solid #03c397;
    }
    
    .fake-email-tool .content-block h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #21232a;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .fake-email-tool .content-block h3 i {
        color: #03c397;
        font-size: 1.3rem;
    }
    
    .fake-email-tool .content-block p {
        color: #555;
        line-height: 1.8;
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .fake-email-tool .content-block ul {
        padding-left: 0;
        list-style: none;
        margin: 0;
    }
    
    .fake-email-tool .content-block ul li {
        padding: 10px 0 10px 30px;
        position: relative;
        color: #555;
        line-height: 1.6;
    }
    
    .fake-email-tool .content-block ul li::before {
        content: '\F26A';
        font-family: 'bootstrap-icons';
        position: absolute;
        left: 0;
        color: #03c397;
        font-weight: bold;
    }
    
    .fake-email-tool .faq-section {
        padding: 80px 0;
        background: #f8f9fa;
    }
    
    .fake-email-tool .accordion-item {
        border: none;
        margin-bottom: 15px;
        border-radius: 12px !important;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }
    
    .fake-email-tool .accordion-button {
        font-weight: 600;
        color: #21232a;
        padding: 20px 25px;
        background: white;
        font-size: 1rem;
    }
    
    .fake-email-tool .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, #e8faf6 0%, #ffffff 100%);
        color: #03c397;
        box-shadow: none;
    }
    
    .fake-email-tool .accordion-button:focus {
        box-shadow: none;
        border-color: transparent;
    }
    
    .fake-email-tool .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2303c397'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
    
    .fake-email-tool .accordion-body {
        padding: 20px 25px;
        color: #555;
        line-height: 1.8;
    }
    
    .fake-email-tool .rating-section {
        background: linear-gradient(135deg, #21232a 0%, #2d3039 100%);
        padding: 60px 0;
        text-align: center;
    }
    
    .fake-email-tool .rating-stars {
        color: #ffc107;
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .fake-email-tool .rating-value {
        font-size: 3rem;
        font-weight: 800;
        color: #03c397;
    }
    
    .fake-email-tool .rating-count {
        color: #a0a0a0;
        font-size: 1.1rem;
    }
    
    .fake-email-tool .ad-space {
        background: linear-gradient(135deg, #f8f9fa 0%, #e5e5f0 100%);
        border: 2px dashed #ddd;
        border-radius: 12px;
        padding: 20px;
        text-align: center;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        color: #999;
        font-size: 0.9rem;
    }
    
    .fake-email-tool .ad-space i {
        font-size: 2rem;
        margin-bottom: 10px;
        color: #ccc;
    }
    
    /* Modal Styles */
    .fake-email-tool .modal-content {
        border-radius: 20px;
        border: none;
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }
    
    .fake-email-tool .modal-header {
        background: linear-gradient(135deg, #21232a 0%, #2d3039 100%);
        color: white;
        padding: 20px 25px;
        border: none;
    }
    
    .fake-email-tool .modal-header .modal-title {
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .fake-email-tool .modal-header .btn-close {
        filter: brightness(0) invert(1);
        opacity: 0.8;
    }
    
    .fake-email-tool .modal-header .btn-close:hover {
        opacity: 1;
    }
    
    .fake-email-tool .modal-body {
        padding: 25px;
    }
    
    .fake-email-tool .modal-footer {
        border: none;
        padding: 15px 25px 25px;
    }
    
    .fake-email-tool .email-detail-row {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .fake-email-tool .email-detail-row:last-child {
        border-bottom: none;
    }
    
    .fake-email-tool .email-detail-label {
        font-weight: 600;
        color: #21232a;
        min-width: 80px;
        display: inline-block;
    }
    
    .fake-email-tool .email-body-content {
        background: #f8f9fa;
        border-radius: 12px;
        padding: 20px;
        margin-top: 15px;
        min-height: 150px;
        line-height: 1.7;
    }
    
    /* Toast Notification Styles */
    .fake-email-tool .toast-container {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 99999;
    }
    
    .fake-email-tool .custom-toast {
        background: white;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        padding: 15px 20px;
        display: flex;
        align-items: center;
        gap: 15px;
        min-width: 320px;
        max-width: 400px;
        margin-bottom: 10px;
        animation: toastSlideIn 0.4s ease;
    }
    
    .fake-email-tool .custom-toast.success {
        border-left: 5px solid #03c397;
    }
    
    .fake-email-tool .custom-toast.error {
        border-left: 5px solid #ff6b6b;
    }
    
    .fake-email-tool .custom-toast.info {
        border-left: 5px solid #17a2b8;
    }
    
    .fake-email-tool .toast-icon {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        flex-shrink: 0;
    }
    
    .fake-email-tool .toast-icon.success {
        background: #e8faf6;
        color: #03c397;
    }
    
    .fake-email-tool .toast-icon.error {
        background: #ffe8e8;
        color: #ff6b6b;
    }
    
    .fake-email-tool .toast-icon.info {
        background: #e8f4f8;
        color: #17a2b8;
    }
    
    .fake-email-tool .toast-content {
        flex-grow: 1;
    }
    
    .fake-email-tool .toast-title {
        font-weight: 700;
        color: #21232a;
        font-size: 0.95rem;
        margin-bottom: 2px;
    }
    
    .fake-email-tool .toast-message {
        color: #666;
        font-size: 0.85rem;
    }
    
    .fake-email-tool .toast-close {
        background: none;
        border: none;
        color: #999;
        font-size: 1.2rem;
        cursor: pointer;
        padding: 0;
        line-height: 1;
    }
    
    .fake-email-tool .toast-close:hover {
        color: #333;
    }
    
    @keyframes toastSlideIn {
        from {
            transform: translateX(100%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    @keyframes toastSlideOut {
        from {
            transform: translateX(0);
            opacity: 1;
        }
        to {
            transform: translateX(100%);
            opacity: 0;
        }
    }
    
    .fake-email-tool .qr-display {
        background: white;
        padding: 20px;
        border-radius: 16px;
        display: inline-block;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .fake-email-tool .action-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .fake-email-tool .quick-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-top: 20px;
    }
    
    /* Responsive Styles */
    @media (max-width: 991px) {
        .fake-email-tool .hero-title {
            font-size: 2rem;
        }
        
        .fake-email-tool .ad-space {
            min-height: 150px;
            margin-bottom: 20px;
        }
        
        .fake-email-tool .section-title {
            font-size: 1.75rem;
        }
    }
    
    @media (max-width: 767px) {
        .fake-email-tool .hero-section {
            padding: 40px 0 60px;
        }
        
        .fake-email-tool .hero-title {
            font-size: 1.6rem;
        }
        
        .fake-email-tool .hero-subtitle {
            font-size: 1rem;
        }
        
        .fake-email-tool .tool-card {
            padding: 20px;
        }
        
        .fake-email-tool .email-address {
            font-size: 1rem;
            padding: 12px;
        }
        
        .fake-email-tool .btn-primary-custom,
        .fake-email-tool .btn-secondary-custom {
            padding: 10px 18px;
            font-size: 0.85rem;
            width: 100%;
            justify-content: center;
        }
        
        .fake-email-tool .action-buttons {
            flex-direction: column;
        }
        
        .fake-email-tool .domain-option {
            padding: 8px 14px;
            font-size: 0.8rem;
        }
        
        .fake-email-tool .inbox-section {
            padding: 15px;
        }
        
        .fake-email-tool .custom-toast {
            min-width: 280px;
            max-width: calc(100vw - 40px);
        }
        
        .fake-email-tool .feature-section,
        .fake-email-tool .content-section,
        .fake-email-tool .faq-section {
            padding: 50px 0;
        }
        
        .fake-email-tool .content-block {
            padding: 25px;
        }
    }