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

body {
    width: 100%;
    height: 100vh;
    background: #000;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Coming Soon Text - Bottom Left */
.coming-soon {
    position: fixed;
    bottom: 40px;
    left: 40px;
    font-family: 'Contrail One', cursive;
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.coming-soon:hover {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Link Preview Card */
.link-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 420px;
    height: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    z-index: 5;
}

.link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* Card Image */
.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Content */
.card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Card Title */
.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
}

/* Card Description */
.card-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Footer */
.card-footer {
    display: flex;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid #e0e0e0;
}

.card-domain {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #999;
    text-transform: lowercase;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon {
        font-size: 36px;
        bottom: 30px;
        left: 30px;
    }

    .link-card {
        max-width: 90%;
        margin: 0 20px;
    }

    .card-image {
        height: 180px;
    }

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

    .card-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .coming-soon {
        font-size: 28px;
        bottom: 20px;
        left: 20px;
    }

    .link-card {
        max-width: 95%;
        margin: 0 10px;
    }

    .card-image {
        height: 150px;
    }

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

    .card-content {
        padding: 12px;
    }
}
