:root {
    --primary: #4361EE;
    --primary-dark: #3A0CA3;
    --primary-light: #F0F4FF;
    --secondary: #F72585;
    /* Vibrant Pink/Red */
    --accent: #FF9F1C;
    /* Warm Orange */
    --success: #10B981;
    /* Teal/Green */

    --text-main: #1E293B;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.btn {
    font-family: 'Outfit', sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-white {
    background-color: var(--bg-white);
}

.full-width {
    width: 100%;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent);
    opacity: 0.2;
    z-index: -1;
    border-radius: 4px;
}

/* --- Top Bar (Updated to Red/Pink Gradient) --- */
.top-bar {
    background: linear-gradient(90deg, #ec4899 0%, #be185d 100%);
    color: white;
    text-align: center;
    padding: 0.75rem 0;
    font-weight: 700;
    font-size: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    letter-spacing: 0.5px;
}

/* --- Hero Section (Centered & No Image) --- */
.hero {
    padding: 4rem 0 2rem;
    background: radial-gradient(circle at center, var(--primary-light) 0%, transparent 60%);
    overflow: hidden;
    position: relative;
    text-align: center;
    min-height: 60vh;
    /* Ensure some presence */
    display: flex;
    align-items: center;
}

.hero-content-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text .badge {
    background-color: white;
    box-shadow: var(--shadow-sm);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-text .subtitle {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin: 0 auto 2.5rem;
    max-width: 90%;
    line-height: 1.5;
}

.benefits-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefits-inline span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-main);
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-sm);
    font-size: 0.95rem;
}

.benefits-inline i {
    color: var(--success);
    font-size: 1.2rem;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    filter: blur(50px);
    opacity: 0.5;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse-bg 8s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    bottom: 10%;
    right: 5%;
    animation: float 8s infinite ease-in-out reverse;
}

@keyframes pulse-bg {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1.1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-lg {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
    border-radius: 3rem;
}

.btn-xl {
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
    border-radius: var(--radius-lg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.btn-secondary {
    background: #e2e8f0;
    color: var(--text-main);
}

.btn-secondary:hover {
    background: #cbd5e1;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* --- Section Headers --- */
.section-header {
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* --- Card Grids (General) --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-content: center;
}

/* --- Info/Feature Cards --- */
.info-card,
.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid white;
}

.info-card:hover,
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.card-icon,
.icon-box {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    /* Make them circular consistenty */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover .card-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.info-card h4,
.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    font-weight: 700;
}

.info-card p,
.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}


/* --- Modules --- */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.module-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.module-card:hover {
    transform: scale(1.02);
}

.module-header {
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.module-body {
    padding: 1.5rem;
    color: var(--text-muted);
    text-align: center;
}

/* --- Bonuses --- */
.tag {
    background: var(--secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.bonus-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px dashed var(--primary);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
}

.bonus-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.bonus-content h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.bonus-note {
    margin-top: 2rem;
    color: var(--success);
    font-weight: 600;
}

/* --- Carousel Styles --- */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 1rem;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    background: white;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background: #f8fafc;
    display: block;
}

@media (max-width: 768px) {
    .carousel-slide img {
        height: 350px;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--primary);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -15px;
}

.next-btn {
    right: -15px;
}

@media (max-width: 1000px) {
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.indicator.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* --- Pricing (Dual Cards) --- */
.pricing-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.pricing-card.premium {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.best-seller-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 2rem;
}

.pricing-card h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-display {
    margin-bottom: 0.5rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    display: block;
}

.final-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}

.final-price.text-highlight {
    color: var(--success);
}

.badge-discount {
    background: #ffe4e6;
    color: #e11d48;
    padding: 0.2rem 0.5rem;
    border-radius: 0.3rem;
    font-size: 0.75rem;
    font-weight: 700;
    vertical-align: middle;
}

.badge-discount.high-contrast {
    background: var(--accent);
    color: white;
}

.payment-info {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.social-proof {
    color: #e11d48;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
}

.card-body ul {
    margin-bottom: 2rem;
    font-size: 0.95rem;
    text-align: left;
}

.check-list-price li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-list-price i {
    color: var(--success);
    margin-top: 4px;
}

.check-list-price li.disabled {
    color: #cbd5e1;
    text-decoration: line-through;
}

.check-list-price li.disabled i {
    color: #e11d48;
}

.bonus-box {
    background: #f0fdf4;
    border: 1px dashed var(--success);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.bonus-box strong {
    display: block;
    color: var(--success);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.small-text li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* --- Guarantee Section --- */
.guarantee-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-icon-large {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.shield-circle {
    width: 100px;
    height: 100px;
    background: #DCFCE7;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--success);
    position: relative;
    font-size: 2.5rem;
}

.days-badge {
    position: absolute;
    bottom: -10px;
    background: var(--success);
    color: white;
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    font-weight: 700;
}

.guarantee-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.guarantee-seal {
    font-weight: 700;
    color: var(--primary-dark);
}

.green-text {
    color: var(--success);
}

/* --- FAQ Section --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    /* Turn (+) into (x) */
    color: var(--secondary);
}

/* --- Footer --- */
.main-footer {
    background: var(--text-main);
    /* Dark Slate */
    color: #cbd5e1;
    padding: 4rem 0 2rem;
}

.main-footer h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.75rem;
    opacity: 0.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Animations Helper */
[data-animate] {
    opacity: 0;
    transition: all 0.8s ease-out;
}

[data-animate="fade-in"] {
    transform: translateY(20px);
}

[data-animate="slide-up"] {
    transform: translateY(40px);
}

[data-animate="zoom-in"] {
    transform: scale(0.8);
}

.animate-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transform: scale(1) !important;
}

/* Responsive */
@media (max-width: 968px) {
    .pricing-card.premium {
        transform: scale(1);
        margin-top: 1rem;
    }

    .hero {
        padding: 4rem 0 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
}

/* --- ADDED: Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: white;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    max-width: 330px;
    /* Much smaller for mobile */
    width: 85%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--secondary);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #f1f5f9;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
    line-height: 0;
}

.close-modal:hover {
    background: #e2e8f0;
    color: var(--text-main);
}

.modal-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.modal-title {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.modal-body {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.price-comparison {
    margin: 0.75rem 0;
    background: #fff1f2;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    border: 1px dashed var(--secondary);
}

.price-comparison .old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.price-comparison .new {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    line-height: 1.1;
}

/* --- Expert Section (Professora Lary) --- */
.expert-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.expert-image-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
}

.expert-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}

.expert-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    border: 3px solid white;
}

.tag-outline {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.expert-bio {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.expert-signature {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-top: 2rem;
}

/* --- Dynamic Enhancements --- */
.hero-image-dynamic {
    max-width: 100%;
    margin: 2rem auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateX(5deg);
    transition: all 0.5s ease;
    border: 4px solid white;
    width: 80%;
    /* Limit width slightly so it doesnt fill edge to edge */
}

.hero-image-dynamic:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Make cards more dynamic as requested */
.info-card,
.module-card,
.pricing-card,
.bonus-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    /* Bouncy spring effect */
}

.info-card:hover,
.module-card:hover,
.bonus-item:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
    border-color: var(--primary-light);
}

.hero-video {
    width: 100%;
    height: 0;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    max-width: 320px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    /* Desktop: Landscape */
}

@media (max-width: 968px) {
    .hero-video {
        padding-bottom: 100%;
        /* Mobile: Square */
        max-width: 100%;
        /* Allow full width fit */
    }
}

.hero-banner-img {
    width: 100%;
    max-width: 500px;
    /* Limit size nicely */
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    /* Nice shadow */
    margin: 0 auto;
    display: block;
}