@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* Background & Theme */
body {
    background-color: #0d0d0d;
    color: #fff;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h1 span {
    color: #ffcc00;
}

p {
    font-size: 1.3rem;
    opacity: 0.8;
}

/* Input Field & Preview */
#customLink {
    margin-top: 20px;
    padding: 10px;
    width: 60%;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    text-align: center;
}

.preview-container {
    margin-top: 10px;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Features */
.feature-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.feature {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
}

/* Showcase */
#showcase {
    margin-top: 50px;
    padding: 50px 20px;
}

.showcase-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.showcase-item {
    width: 200px;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

/* Footer */
footer {
    background: #000;
    padding: 20px;
    font-size: 0.9rem;
    margin-top: 50px;
}
