/* Reset en basis styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #595959;
    background-color: #F2F2F2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styling */
.header {
    background: linear-gradient(135deg, #0D65D9 0%, #327AD9 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Main content */
.main {
    padding: 3rem 0;
}

.intro {
    text-align: center;
    margin-bottom: 3rem;
}

.intro h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #595959;
}

.intro p {
    font-size: 1.1rem;
    color: #595959;
    max-width: 600px;
    margin: 0 auto;
}

/* Templates grid */
.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.template-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.template-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Template preview */
.template-preview {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem;
    height: 200px;
    position: relative;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.preview-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
}

.nav-dot:first-child {
    background: #ff5f57;
}

.nav-dot:nth-child(2) {
    background: #ffbd2e;
}

.nav-dot:nth-child(3) {
    background: #28ca42;
}

/* Preview content styles */
.preview-hero {
    display: flex;
    gap: 1rem;
    height: 60px;
}

.preview-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #0D65D9, #327AD9);
    border-radius: 8px;
}

.preview-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.text-line {
    background: #dee2e6;
    border-radius: 4px;
    height: 12px;
}

.text-line.short {
    width: 60%;
}

.text-line.medium {
    width: 80%;
}

.text-line.long {
    width: 100%;
}

.preview-sections {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.section-line {
    height: 8px;
    background: #dee2e6;
    border-radius: 4px;
}

/* Gallery preview */
.preview-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    height: 80px;
    margin-bottom: 1rem;
}

.gallery-item {
    background: linear-gradient(45deg, #0D65D9, #327AD9);
    border-radius: 6px;
}

.preview-text-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Business preview */
.preview-business {
    height: 100%;
}

.business-header {
    margin-bottom: 1rem;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.grid-item {
    height: 30px;
    background: #dee2e6;
    border-radius: 4px;
}

/* Creative preview */
.preview-creative {
    height: 100%;
}

.creative-hero {
    position: relative;
    height: 80px;
    background: linear-gradient(45deg, #0D65D9, #327AD9);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.hero-image {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hero-overlay .text-line {
    background: rgba(255, 255, 255, 0.8);
    height: 8px;
}

.creative-sections {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.section-block {
    height: 20px;
    background: #dee2e6;
    border-radius: 4px;
}

/* Template info */
.template-info {
    padding: 1.5rem;
}

.template-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #595959;
}

.template-info p {
    color: #595959;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #595959;
}

.features i {
    color: #BF265E;
    font-size: 0.9rem;
}

.select-btn {
    width: 100%;
    background: linear-gradient(135deg, #0D65D9 0%, #327AD9 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 101, 217, 0.4);
}

.select-btn:active {
    transform: translateY(0);
}

/* Success message styling */
.success-message {
    background: linear-gradient(135deg, #BF265E 0%, #0D65D9 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(191, 38, 94, 0.3);
    animation: slideInDown 0.5s ease;
}

.success-message i {
    font-size: 1.2rem;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tab Navigation Styling */
.tab-navigation {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
}

.tab-btn {
    background: #F2F2F2;
    color: #595959;
    border: 2px solid #595959;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover {
    background: #595959;
    color: #F2F2F2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(89, 89, 89, 0.3);
}

.tab-btn.active {
    background: linear-gradient(135deg, #0D65D9 0%, #327AD9 100%);
    color: white;
    border-color: #0D65D9;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Winner Section Styling */
.winner-section {
    margin: 3rem 0;
}

.winner-card {
    background: linear-gradient(135deg, #BF265E 0%, #0D65D9 100%);
    color: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(191, 38, 94, 0.3);
    position: relative;
    overflow: hidden;
}

.winner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.winner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.winner-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.winner-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.winner-description {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.winner-why {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.winner-benefits {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.winner-benefits h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.winner-benefits ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.winner-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.winner-benefits i {
    color: #FFD700;
    font-size: 1.1rem;
}

.winner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.winner-demo-btn, .winner-download-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.winner-demo-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.winner-demo-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.winner-download-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #0D65D9;
    font-weight: 700;
}

.winner-download-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.winner-live-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0D65D9;
    font-weight: 700;
}

.winner-live-btn:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #0D65D9;
}

.winner-live-btn i {
    font-size: 1.3rem;
}

.winner-live-btn small {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Alternative Options Styling */
.alternatives-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
}

/* Templates Showcase Grid */
.templates-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.template-showcase-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.template-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: #0D65D9;
}

.template-showcase-card.selected {
    border-color: #BF265E;
    box-shadow: 0 16px 48px rgba(191, 38, 94, 0.2);
}

/* Template Preview Section */
.template-preview-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.template-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.preview-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
}

.nav-dot:first-child {
    background: #ff5f57;
}

.nav-dot:nth-child(2) {
    background: #ffbd2e;
}

.nav-dot:nth-child(3) {
    background: #28ca42;
}

.template-type-badge {
    background: linear-gradient(135deg, #0D65D9 0%, #327AD9 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.template-preview-content {
    height: 200px;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Template Info Section */
.template-info-section {
    padding: 2rem;
}

.template-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.template-header h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #595959;
    margin: 0;
    flex: 1;
}

.template-rating {
    margin-left: 1rem;
}

.template-rating .fas.fa-star {
    color: #FFD700;
    font-size: 1rem;
}

.template-rating .far.fa-star {
    color: #e9ecef;
    font-size: 1rem;
}

.template-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.template-features {
    margin-bottom: 2rem;
}

.template-features h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #595959;
    margin-bottom: 0.8rem;
}

.template-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.template-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.template-features i {
    color: #28a745;
    font-size: 0.8rem;
}

/* Template Actions */
.template-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.8rem;
}

.template-demo-btn, .template-download-btn, .template-select-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.template-demo-btn {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.template-demo-btn:hover {
    background: #e9ecef;
    color: #495057;
    transform: translateY(-1px);
}

.template-download-btn {
    background: linear-gradient(135deg, #0D65D9 0%, #327AD9 100%);
    color: white;
}

.template-download-btn:hover {
    background: linear-gradient(135deg, #0B5BC7 0%, #2A6BC7 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 101, 217, 0.3);
}

.template-select-btn {
    background: linear-gradient(135deg, #BF265E 0%, #0D65D9 100%);
    color: white;
}

.template-select-btn:hover {
    background: linear-gradient(135deg, #A01E4A 0%, #0B5BC7 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(191, 38, 94, 0.3);
}

.template-select-btn.selected {
    background: #28a745;
    color: white;
}

.template-select-btn.selected:hover {
    background: #218838;
}

.alternatives-section h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #595959;
    text-align: center;
}

.alternatives-section p {
    text-align: center;
    color: #595959;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.alternatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.alternative-card {
    background: #F8F9FA;
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.alternative-card:hover {
    border-color: #0D65D9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 101, 217, 0.1);
}

.alternative-card h4 {
    color: #595959;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.alternative-card p {
    color: #595959;
    margin-bottom: 1.2rem;
    text-align: left;
    line-height: 1.5;
}

.alternative-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.alt-demo-btn, .alt-download-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.alt-demo-btn {
    background: #F2F2F2;
    color: #595959;
    border: 1px solid #595959;
}

.alt-demo-btn:hover {
    background: #595959;
    color: #F2F2F2;
    transform: translateY(-1px);
}

.alt-download-btn {
    background: linear-gradient(135deg, #0D65D9 0%, #327AD9 100%);
    color: white;
    border: none;
}

.alt-download-btn:hover {
    background: linear-gradient(135deg, #0B5BC7 0%, #2A6BC7 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(13, 101, 217, 0.3);
}

.alt-select-btn {
    background: linear-gradient(135deg, #BF265E 0%, #0D65D9 100%);
    color: white;
    border: none;
    flex: 1;
    min-width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.alt-select-btn:hover {
    background: linear-gradient(135deg, #A01E4A 0%, #0B5BC7 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(191, 38, 94, 0.3);
}

/* Alternative Templates Styling */
.alternatives-intro {
    background: linear-gradient(135deg, #BF265E 0%, #0D65D9 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

.alternatives-intro h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.provider-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.provider-header {
    background: linear-gradient(135deg, #0D65D9 0%, #327AD9 100%);
    color: white;
    padding: 1.5rem;
}

.provider-header h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.provider-advice {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.template-card h4 {
    color: #595959;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.template-type {
    background: #F2F2F2;
    color: #595959;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.template-price {
    font-weight: 600;
    color: #BF265E;
    margin-bottom: 1rem;
}

.template-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0D65D9 0%, #327AD9 100%);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.template-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 101, 217, 0.3);
}

.personal-recommendation {
    background: linear-gradient(135deg, #BF265E 0%, #0D65D9 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.personal-recommendation h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Template actions styling */
.template-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.demo-btn, .download-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 120px;
}

.demo-btn {
    background: #F2F2F2;
    color: #595959;
    border: 1px solid #595959;
}

.demo-btn:hover {
    background: #595959;
    color: #F2F2F2;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(89, 89, 89, 0.2);
}

.download-btn {
    background: linear-gradient(135deg, #BF265E 0%, #0D65D9 100%);
    color: white;
    border: none;
}

.download-btn:hover {
    background: linear-gradient(135deg, #A01E4A 0%, #0B5BC7 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(191, 38, 94, 0.3);
}

.demo-btn i, .download-btn i {
    font-size: 0.8rem;
}

/* Comparison table */
.comparison {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #595959;
    text-align: center;
}

.comparison-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

th, td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

th {
    background: #F2F2F2;
    font-weight: 600;
    color: #595959;
}

td:first-child {
    text-align: left;
    font-weight: 500;
}

.fas.fa-star {
    color: #BF265E;
}

.far.fa-star {
    color: #F2F2F2;
}

/* Creative Disclaimer Styling */
.creative-disclaimer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.creative-disclaimer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.disclaimer-icon {
    font-size: 3rem;
    animation: bounce 2s infinite;
}

.disclaimer-text {
    flex: 1;
    color: white;
}

.disclaimer-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.disclaimer-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.disclaimer-text .highlight {
    font-weight: 600;
    font-size: 1.2rem;
    color: #FFD700;
}

.live-website-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    text-decoration: none;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.live-website-btn:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    color: #667eea;
}

.live-website-btn i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.live-website-btn span {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.live-website-btn small {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Creative Choice Note */
.creative-choice-note {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.choice-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.choice-text {
    color: white;
    font-size: 1rem;
    line-height: 1.5;
}

.choice-text strong {
    color: #FFD700;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Footer */
.footer {
    background: #595959;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-main {
    flex: 1;
    text-align: left;
}

.footer-creative {
    text-align: right;
    font-size: 0.9rem;
}

.footer-creative p {
    margin-bottom: 0.5rem;
}

.footer-creative a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
}

.footer-creative a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .intro h2 {
        font-size: 1.8rem;
    }
    
    .templates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .template-preview {
        height: 150px;
    }
    
    .preview-hero {
        height: 50px;
    }
    
    .preview-image {
        width: 50px;
        height: 50px;
    }
    
    .preview-gallery {
        height: 60px;
    }
    
    .creative-hero {
        height: 60px;
    }
    
    .comparison {
        padding: 1rem;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 1.5rem 0;
    }
    
    .main {
        padding: 2rem 0;
    }
    
    .template-info {
        padding: 1rem;
    }
    
    .select-btn {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    .demo-actions {
        flex-direction: column;
    }
    
    .demo-btn, .download-btn {
        min-width: auto;
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    .winner-card {
        padding: 1.5rem;
    }
    
    .winner-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .winner-header h3 {
        font-size: 1.5rem;
    }
    
    .winner-actions {
        flex-direction: column;
    }
    
    .winner-demo-btn, .winner-download-btn, .winner-live-btn {
        min-width: auto;
    }
    
    .templates-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .template-showcase-card {
        margin-bottom: 1rem;
    }
    
    .template-actions {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .template-demo-btn, .template-download-btn, .template-select-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .alternative-actions {
        flex-direction: column;
    }
    
    .alt-demo-btn, .alt-download-btn, .alt-select-btn {
        min-width: auto;
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    .disclaimer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .disclaimer-icon {
        font-size: 2.5rem;
    }
    
    .live-website-btn {
        min-width: auto;
        padding: 1rem 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-main, .footer-creative {
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.template-card {
    animation: fadeInUp 0.6s ease forwards;
}

.template-card:nth-child(1) {
    animation-delay: 0.1s;
}

.template-card:nth-child(2) {
    animation-delay: 0.2s;
}

.template-card:nth-child(3) {
    animation-delay: 0.3s;
}

.template-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Selected state */
.template-card.selected {
    border: 2px solid #0D65D9;
    box-shadow: 0 8px 30px rgba(13, 101, 217, 0.3);
}

.template-card.selected .select-btn {
    background: #BF265E;
}

.template-card.selected .select-btn:hover {
    background: #A01E4A;
    box-shadow: 0 4px 15px rgba(191, 38, 94, 0.4);
}
