* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #0a0a2a 0%, #1a0a3a 50%, #0a0a2a 100%);
    background-attachment: fixed;
    color: #e0e0e0;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

header {
    margin-bottom: 40px;
}

h1 {
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(136, 221, 255, 0.5);
}

.tagline {
    font-size: 1.2em;
    color: #88ddff;
    margin-top: 0;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(136, 221, 255, 0.1);
    border: 2px solid rgba(136, 221, 255, 0.3);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 50px;
}

.newsletter-section h3 {
    color: #88ddff;
    font-size: 1.8em;
    margin-top: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 20px auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 2px solid rgba(136, 221, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 5px;
    font-size: 1em;
}

.newsletter-form button {
    padding: 15px 30px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #0056b3;
}

.privacy-note {
    font-size: 0.9em;
    color: #aaa;
    margin-top: 10px;
}

/* Events Container */
#events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.event {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(136, 221, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(136, 221, 255, 0.3);
}

.event-icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.event h2 {
    font-size: 1.5em;
    margin: 10px 0;
    color: #88ddff;
}

.event-description {
    font-size: 0.95em;
    color: #ccc;
    line-height: 1.6;
    margin: 15px 0;
    min-height: 60px;
}

.countdown {
    font-size: 1.8em;
    font-weight: bold;
    color: #ffffff;
    margin: 20px 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.add-to-calendar {
    display: inline-block;
    background: rgba(136, 221, 255, 0.2);
    color: #88ddff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9em;
    margin-top: 10px;
    transition: background 0.3s;
}

.add-to-calendar:hover {
    background: rgba(136, 221, 255, 0.3);
}

/* Event Products */
.event-products {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(136, 221, 255, 0.2);
}

.products-title {
    font-size: 0.95em;
    color: #ffcc00;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.3);
    padding: 10px 15px;
    margin: 8px 0;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.product-link:hover {
    background: rgba(255, 204, 0, 0.2);
    transform: translateX(5px);
}

.product-name {
    color: #ccc;
    font-size: 0.9em;
}

.product-price {
    color: #ffcc00;
    font-weight: bold;
    font-size: 1em;
}

/* Commemorative Certificates */
.certificates-section {
    margin: 60px 0;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), rgba(255, 153, 0, 0.05));
    border: 2px solid rgba(255, 204, 0, 0.3);
    border-radius: 15px;
}

.certificates-section h2 {
    color: #ffcc00;
    font-size: 2.2em;
    margin-bottom: 10px;
    text-align: center;
}

.cert-tagline {
    text-align: center;
    color: #ccc;
    font-size: 1.1em;
    margin-bottom: 40px;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.certificate-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 204, 0, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
}

.certificate-card.featured {
    border-color: #ffcc00;
    border-width: 3px;
    background: rgba(255, 204, 0, 0.08);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b00, #ffcc00);
    color: #000;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: bold;
    letter-spacing: 1px;
}

.cert-icon {
    font-size: 3.5em;
    margin-bottom: 15px;
}

.certificate-card h3 {
    color: #fff;
    font-size: 1.4em;
    margin: 15px 0;
}

.cert-price {
    font-size: 2em;
    color: #ffcc00;
    font-weight: bold;
    margin: 15px 0;
}

.orig-price {
    font-size: 0.6em;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.certificate-card p {
    color: #aaa;
    margin-bottom: 20px;
}

.cert-features {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.cert-features li {
    color: #ccc;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-features li:before {
    content: '✓ ';
    color: #ffcc00;
    font-weight: bold;
    margin-right: 8px;
}

.cert-button {
    display: inline-block;
    background: rgba(255, 204, 0, 0.2);
    border: 2px solid #ffcc00;
    color: #ffcc00;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    margin-top: 15px;
    transition: all 0.3s;
}

.cert-button:hover {
    background: #ffcc00;
    color: #000;
}

.cert-button.primary {
    background: linear-gradient(135deg, #ff6b00, #ffcc00);
    border: none;
    color: #000;
}

.cert-button.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 204, 0, 0.5);
}

/* Premium Membership */
.premium-section {
    margin: 60px 0;
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(136, 221, 255, 0.15), rgba(0, 123, 255, 0.1));
    border: 2px solid rgba(136, 221, 255, 0.4);
    border-radius: 15px;
}

.premium-header {
    text-align: center;
    margin-bottom: 40px;
}

.premium-header h2 {
    color: #88ddff;
    font-size: 2.2em;
    margin-bottom: 10px;
}

.premium-tagline {
    color: #ccc;
    font-size: 1.1em;
}

.premium-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.premium-card {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(136, 221, 255, 0.3);
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(136, 221, 255, 0.3);
}

.premium-card.featured-premium {
    border-color: #88ddff;
    border-width: 3px;
    background: rgba(136, 221, 255, 0.1);
}

.best-value-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #007bff, #88ddff);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: bold;
    letter-spacing: 1px;
}

.premium-card h3 {
    color: #fff;
    font-size: 1.5em;
    margin: 15px 0;
}

.premium-price {
    font-size: 3em;
    color: #88ddff;
    font-weight: bold;
    margin: 20px 0;
}

.premium-price span {
    font-size: 0.4em;
    color: #aaa;
}

.savings {
    background: rgba(0, 255, 0, 0.2);
    color: #0f0;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9em;
    font-weight: bold;
}

.premium-features {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.premium-features li {
    color: #ccc;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-features li:before {
    content: '⭐ ';
    margin-right: 8px;
}

.premium-button {
    display: inline-block;
    background: rgba(136, 221, 255, 0.2);
    border: 2px solid #88ddff;
    color: #88ddff;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 15px;
    transition: all 0.3s;
}

.premium-button:hover {
    background: #88ddff;
    color: #000;
}

.premium-button.primary-premium {
    background: linear-gradient(135deg, #007bff, #88ddff);
    border: none;
    color: #fff;
}

.premium-button.primary-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(136, 221, 255, 0.5);
}

/* Time Capsule */
.timecapsule-section {
    margin: 60px 0;
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(138, 43, 226, 0.05));
    border: 2px solid rgba(186, 85, 211, 0.4);
    border-radius: 15px;
}

.timecapsule-section h2 {
    color: #ba55d3;
    font-size: 2.2em;
    margin-bottom: 10px;
    text-align: center;
}

.tc-tagline {
    text-align: center;
    color: #ccc;
    font-size: 1.1em;
    margin-bottom: 40px;
}

.timecapsule-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.tc-visual {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(186, 85, 211, 0.3);
    border-radius: 12px;
    padding: 30px;
}

.tc-icon {
    font-size: 4em;
    text-align: center;
    margin-bottom: 20px;
}

.tc-visual h3 {
    color: #ba55d3;
    font-size: 1.6em;
    margin-bottom: 20px;
    text-align: center;
}

.tc-steps {
    color: #ccc;
    padding-left: 20px;
    line-height: 2;
}

.tc-steps li {
    margin: 15px 0;
    color: #ddd;
}

.tc-pricing-box {
    background: rgba(186, 85, 211, 0.1);
    border: 3px solid #ba55d3;
    border-radius: 12px;
    padding: 35px;
    text-align: center;
}

.tc-pricing-box h3 {
    color: #fff;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.tc-price {
    font-size: 3.5em;
    color: #ba55d3;
    font-weight: bold;
    margin: 10px 0;
}

.tc-per {
    color: #aaa;
    font-size: 0.9em;
    margin-bottom: 25px;
}

.tc-features-box {
    text-align: left;
    margin: 25px 0;
}

.tc-features-box h4 {
    color: #ba55d3;
    margin-bottom: 15px;
}

.tc-features-box ul {
    list-style: none;
    padding: 0;
}

.tc-features-box li {
    color: #ccc;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tc-features-box li:before {
    content: '✨ ';
    color: #ba55d3;
    margin-right: 8px;
}

.tc-button {
    display: inline-block;
    background: linear-gradient(135deg, #ba55d3, #da70d6);
    color: #fff;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    margin: 20px 0;
    transition: all 0.3s;
}

.tc-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(186, 85, 211, 0.5);
}

.tc-popular {
    background: rgba(255, 165, 0, 0.2);
    border-left: 3px solid #ffa500;
    padding: 12px;
    margin-top: 20px;
    border-radius: 5px;
    font-size: 0.9em;
    color: #ddd;
    text-align: left;
}

/* Social Sharing */
.share-section {
    margin: 50px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.share-section h3 {
    color: #88ddff;
    margin-top: 0;
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, opacity 0.3s;
}

.share-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.share-btn.twitter {
    background: #1DA1F2;
    color: #fff;
}

.share-btn.facebook {
    background: #1877F2;
    color: #fff;
}

/* Affiliate Section */
.affiliate-section {
    background: rgba(255, 204, 0, 0.1);
    border: 2px solid rgba(255, 204, 0, 0.3);
    border-radius: 12px;
    padding: 35px;
    margin: 50px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.affiliate-section h2 {
    font-size: 2em;
    color: #ffcc00;
    margin-bottom: 15px;
}

.affiliate-section p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #cccccc;
}

.affiliate-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00, #ffcc00);
    color: #fff;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.affiliate-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.5);
}

/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(136, 221, 255, 0.2);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #88ddff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    color: #aaa;
    font-size: 0.9em;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }

    .newsletter-form {
        flex-direction: column;
    }

    #events-container {
        grid-template-columns: 1fr;
    }

    .share-buttons {
        flex-direction: column;
    }
}