:root {
    --gradient-start: #fff7ed;
    --gradient-middle: #fee2e2;
    --gradient-end: #ffe4e6;
    --accent-start: #0b1220;
    --accent-end: #d07b89;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Biski Trial', Merriweather;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle), var(--gradient-end));
    color: var(--text-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 0rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.skull-icon {
    color: var(--accent-start);
    margin-right: 1rem;
}

h1 {
    font-size: 3.75rem;
    font-weight: bold;
    background: linear-gradient(to right, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 0px;
}

.random-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, var(--accent-start), var(--accent-end));
    color: var(--white);
    font-weight: bold;
    font-size: 1.125rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.random-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
section {
    margin-bottom: 3rem;
}

h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

/* Grid Layouts */
.creations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

/* Creation Cards */
.creation-card {
    position: relative;
    height: 280px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.creation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.creation-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.creation-card:hover .creation-image {
    transform: scale(1.1);
}

.creation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.creation-card:hover .creation-overlay {
    opacity: 1;
}

.creation-title {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.creation-description {
    color: var(--white);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    background: linear-gradient(to right, var(--accent-start), var(--accent-end));
    color: var(--white);
}

.status-badge.coming-soon {
    background: rgba(255, 255, 255, 0.2);
}

/* Footer */
footer {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 3rem;
}
.contact-info {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}
.email-link {
    color: #a15e5e;
    font-size: 18px;
    font-family: 'Quantico', sans-serif; 
}
.social-link img {
    width: 30px;
    height: 30px;
    transition: transform 0.2s ease-in-out;
}

.social-link img:hover {
    transform: scale(1.2);
}


/* Responsive Design */
@media (max-width: 768px) {
    .creations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .creations-grid {
        grid-template-columns: 1fr;
    }
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 10px 0;
}

.footer-link {
    color: #4e55b0;
    text-decoration: none;
    font-size: 1rem;
    padding: 8px 15px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.footer-link:hover {
    background-color: rgba(183, 77, 77, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 30px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-link {
        width: 80%;
        text-align: center;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-link {
        width: 90%;
        font-size: 0.9rem;
    }
}

.affiliate-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.affiliate-image {
    width: 100%;
    max-width: 600px;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
    border-radius: 10px;
}

.affiliate-image:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}
