/* ── Designer Competition Page ─────────────────────────────────────────────── */

.designer-competition .page-hero {
    background-size: cover;
    background-position: center;
    padding: 150px 20px;
    text-align: center;
    color: #fff;
    position: relative;
}

.designer-competition .page-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.designer-competition .page-hero-content {
    position: relative;
    z-index: 1;
}

.designer-competition .page-hero h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
}

.designer-competition .page-hero p {
    font-size: 24px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin: 15px 0;
}

/* Rewards section with side bg images */
.designer-competition .rewards-section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
}

.designer-competition .rewards-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: var(--bg1), var(--bg2);
    background-position: 8% center, 92% center;
    background-repeat: no-repeat;
    background-size: 380px auto;
    opacity: 0.15;
    z-index: 0;
}

.designer-competition .rewards-section .container {
    position: relative;
    z-index: 1;
}

/* Content section */
.designer-competition .content-section {
    padding: 80px 20px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.designer-competition .content-section .container {
    position: relative;
    z-index: 1;
}

/* CTA banner with side bg images */
.designer-competition .cta-banner {
    padding: 100px 20px;
    background: #f9f9f9;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.designer-competition .cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: var(--bg1), var(--bg2);
    background-position: 8% center, 92% center;
    background-repeat: no-repeat;
    background-size: 380px auto;
    opacity: 0.15;
    z-index: 0;
}

.designer-competition .cta-banner .container {
    position: relative;
    z-index: 1;
}

.designer-competition .cta-banner img {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 0 auto 40px;
    border-radius: 10px;
}

.designer-competition .cta-banner h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* Section title */
.designer-competition .section-title {
    font-size: 42px;
    text-align: center;
    color: #333;
    margin-bottom: 60px;
    font-weight: 700;
}

/* Rewards grid */
.designer-competition .rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.designer-competition .reward-item {
    background: rgba(255, 255, 255, 0.98);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.designer-competition .reward-number {
    font-size: 48px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 20px;
}

.designer-competition .reward-item h3 {
    font-size: 24px;
    color: #333;
    margin: 5px 0;
    font-weight: 700;
}

.designer-competition .reward-item p {
    font-size: 16px;
    color: #666;
    margin-top: 15px;
}

/* Competition categories */
.designer-competition .competition-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.designer-competition .category-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.designer-competition .category-card:hover {
    transform: translateY(-10px);
}

.designer-competition .category-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.designer-competition .category-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 40px 20px 30px;
    text-align: center;
}

.designer-competition .category-card-content h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

/* btn-tickets */
.btn-tickets {
    display: inline-block;
    background: transparent;
    color: #000;
    border: 3px solid #000;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-tickets:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .designer-competition .page-hero h1 { font-size: 42px; }
    .designer-competition .cta-banner::before,
    .designer-competition .rewards-section::before { background-size: 200px auto; opacity: 0.1; }
}

/* Reward card - category style (image with overlay) */
.designer-competition .reward-cat-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}
.designer-competition .reward-cat-card:hover { transform: translateY(-8px); }
.designer-competition .reward-cat-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.designer-competition .reward-cat-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
    padding: 40px 20px 28px;
    text-align: center;
}
.designer-competition .reward-cat-overlay .reward-number {
    font-size: 40px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 10px;
}
.designer-competition .reward-cat-overlay h3 {
    font-size: 20px;
    color: #fff;
    margin: 4px 0;
    font-weight: 700;
}
.designer-competition .reward-cat-overlay p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-top: 10px;
}
