@font-face {
    font-family: 'MyCustomFont';
    src: url('/Satoshi-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background image for laptop screens only */
/* @media (min-width: 1024px) {
    body {

        position: relative;
    }

} */

.focus-section {
    background: url('/ultron.jpg') center/cover no-repeat;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 80vh;
    justify-content: flex-end;
    padding: 40px 20px;
}

.focus-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 25px;
    box-shadow:
        0 10px 25px -5px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    width: 60%;
    max-width: 550px;
}

.focus-panel h2 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-align: center;
}

.focus-list {
    list-style: none;
}

.focus-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 8px;
    border-left: 3px solid #667eea;
    transition: all 0.3s ease;
}

.focus-item:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    transform: translateX(5px);
    box-shadow: 0 4px 12px -3px rgba(102, 126, 234, 0.15);
}

.focus-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

.focus-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .focus-section {
        justify-content: center;
        padding: 20px 0;
    }

    .focus-panel {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    /* body {
        padding: 15px;
    } */

    .focus-panel {
        padding: 20px;
        max-width: 100%;
    }

    .focus-panel h2 {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }

    .focus-item {
        padding: 8px 10px;
        margin-bottom: 6px;
    }

    .focus-icon {
        width: 26px;
        height: 26px;
        font-size: 11px;
        margin-right: 10px;
    }

    .focus-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .focus-panel {
        padding: 18px;
    }

    .focus-panel h2 {
        font-size: 1.3rem;
    }

    .focus-item {
        padding: 8px;
    }

    .focus-icon {
        width: 24px;
        height: 24px;
        font-size: 10px;
        margin-right: 8px;
    }

    .focus-text {
        font-size: 0.75rem;
    }
}