@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

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

body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    padding: 20px;
}

.loader-wrapper {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #2a2a2a;
    border-radius: 50%;
}

.circle-arc {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 60%,
        #00c3ff 100%
    );
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 2px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff calc(100% - 2px));
    animation: spin 1.5s linear infinite;
}

.loader-content {
    text-align: center;
    z-index: 10;
}

.loading-text {
    color: #00c3ff;
    font-size: 28px;
    font-weight: 400;
}

.quote-wrapper {
    width: 400px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.quote-bar {
    width: 12px;
    height: 25px;
    background-color: #555;
    transform: skewX(-20deg);
}

blockquote {
    font-size: 24px;
    line-height: 1.4;
    color: #888;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}

cite {
    color: #666;
    font-style: normal;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

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

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }
    .loader-wrapper {
        width: 250px;
        height: 250px;
    }
    .loading-text {
        font-size: 22px;
    }
    .quote-wrapper {
        width: 100%;
        max-width: 350px;
    }
    .quote-icon {
        justify-content: center;
        margin-top: 30px;
    }
}
