/* public/css/styles.css */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #2c2c2c;
    color: #fff;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.load-more {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.subscribe-btn {
    background-color: #fdfdfd;
    color: rgb(205, 101, 4);
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
    box-sizing: content-box;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    font-size: 15px;
}

.subscribe-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.subscribe-btn::before {
    content: "🔔";
    font-size: 18px;
}

.hero-section {
    text-align: center;
    margin-bottom: 20px;
}

.hero-icon-container {
    background-color: #f0f0f0;
    width: 110px;
    height: 110px;
    border: 5px solid #f0f0f0;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.hero-title {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #2c2c2c;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.card-title {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #2b2b2b;
    line-height: 1.3;
}

.footer {
    margin-top: auto;
    padding: 40px 0 10px 0;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-icon::after {
    content: "";
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 30%;
    left: 30%;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .header {
        margin-bottom: 30px;
    }

    .subscribe-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .hero-icon-container {
        width: 100px;
        height: 100px;
    }

    .hero-icon {
        width: 90px;
        height: 90px;
    }

    .hero-title {
        font-size: 20px;
    }

    .card {
        padding: 10px;
        gap: 16px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-title {
        font-size: 16px;
    }

    .content {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-icon-container {
        width: 90px;
        height: 90px;
    }

    .hero-icon {
        width: 80px;
        height: 80px;
    }

    .hero-title {
        font-size: 18px;
    }

    .card {
        padding: 8px;
        gap: 12px;
    }

    .card-icon {
        width: 55px;
        height: 55px;
    }

    .card-title {
        font-size: 14px;
    }

    .logo {
        font-size: 20px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }
}