/* CSS Variables */
:root {
    --primary-color: #203D79;
    --secondary-color: #02BE83;
    --bg-dark: #0a0c10;
    --bg-card: rgba(32, 61, 121, 0.15);
    --text-light: #f5f5f5;
    --text-muted: #a0a0a0;
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(2, 190, 131, 0.5);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: all 0.3s ease;
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #000;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

.glow-effect {
    box-shadow: 0 0 15px rgba(2, 190, 131, 0.4), 0 0 30px rgba(2, 190, 131, 0.2);
}

.glow-effect:hover {
    box-shadow: 0 0 25px rgba(2, 190, 131, 0.6), 0 0 50px rgba(2, 190, 131, 0.4);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-links li a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 8px rgba(2, 190, 131, 0.5);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/hero_bg.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: brightness(0.6) contrast(1.2);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 12, 16, 0.9) 0%, rgba(32, 61, 121, 0.4) 100%);
    z-index: -1;
}

.hero-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #ddd;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #111);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
}

.portrait-img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    border: 1px solid var(--glass-border);
    display: block;
}

.paparazzi-flash {
    position: absolute;
    z-index: 1; /* Atrás da foto */
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: flashAnim 0.3s ease-out forwards;
    mix-blend-mode: color-dodge;
    border-radius: 50%;
    /* Lens flare styling */
    background: 
        linear-gradient(to right, transparent 48%, rgba(255,255,255,0.9) 50%, transparent 52%),
        linear-gradient(to bottom, transparent 48%, rgba(255,255,255,0.9) 50%, transparent 52%),
        linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.6) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255,255,255,0.6) 50%, transparent 51%),
        radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 15%, transparent 60%);
}

@keyframes flashAnim {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5) rotate(0deg); filter: brightness(1); }
    15% { opacity: 1; transform: translate(-50%, -50%) scale(1.1) rotate(10deg); filter: brightness(1.5); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2) rotate(20deg); filter: brightness(1); }
}

.about-text {
    flex: 1;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(32, 61, 121, 0.5);
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(2, 190, 131, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(2, 190, 131, 0.2);
    border-color: rgba(2, 190, 131, 0.4);
}

.card-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.review-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    color: #ffd700;
    border: 1px solid var(--glass-border);
}

.card-content {
    padding: 25px;
}

.tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(32, 61, 121, 0.5);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Ranking Section */
.ranking {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0c10 0%, #1a1e29 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.ranking-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ranking-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.ranking-item:hover {
    background: rgba(32, 61, 121, 0.2);
    transform: scale(1.02);
    border-color: rgba(32, 61, 121, 0.5);
}

.rank-number {
    font-size: 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-muted);
    margin-right: 30px;
    width: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.ranking-item:nth-child(1) .rank-number {
    color: #ffd700;
    -webkit-text-stroke: 0;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.ranking-item:nth-child(2) .rank-number {
    color: #c0c0c0;
    -webkit-text-stroke: 0;
}

.ranking-item:nth-child(3) .rank-number {
    color: #cd7f32;
    -webkit-text-stroke: 0;
}

.rank-info {
    flex: 1;
}

.rank-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.rank-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.rank-score {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Events Section */
.events {
    padding: 100px 0;
}

.events-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.events-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
}

.event-card {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.event-date {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(32, 61, 121, 0.4);
    z-index: 1;
    border: 2px solid var(--bg-dark);
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-details {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    flex: 1;
    position: relative;
}

.event-details::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 30px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--glass-border);
}

.event-details h3 {
    margin-bottom: 10px;
}

.event-details p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.event-time {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

/* Newsletter Section */
.newsletter-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(2, 190, 131, 0.15) 0%, transparent 60%);
    filter: blur(60px);
    z-index: -1;
}

.newsletter-container {
    max-width: 700px;
}

.newsletter-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.newsletter-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 20px;
    color: #fff;
    font-size: 1rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #888;
}

/* Footer */
footer {
    background: #050608;
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    margin-top: 20px;
    color: var(--text-muted);
}

.footer-links ul, .footer-contact ul {
    list-style: none;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #666;
    font-size: 0.9rem;
}

/* Social Buttons Hero */
.btn-yt {
    background-color: transparent;
    border: 2px solid #ff0000;
    color: #fff;
}

.btn-yt:hover {
    background-color: #ff0000;
}

.glow-effect-yt {
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4), 0 0 30px rgba(255, 0, 0, 0.2);
}

.glow-effect-yt:hover {
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.6), 0 0 50px rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
}

.btn-ig {
    background-color: transparent;
    border: 2px solid #E1306C;
    color: #fff;
}

.btn-ig:hover {
    background-color: #E1306C;
}

.glow-effect-ig {
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.4), 0 0 30px rgba(225, 48, 108, 0.2);
}

.glow-effect-ig:hover {
    box-shadow: 0 0 25px rgba(225, 48, 108, 0.6), 0 0 50px rgba(225, 48, 108, 0.4);
    transform: translateY(-2px);
}

.btn-tk {
    background-color: transparent;
    border: 2px solid #00f2fe;
    color: #fff;
}

.btn-tk:hover {
    background-color: #00f2fe;
    color: #000;
}

.glow-effect-tk {
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4), 0 0 30px rgba(0, 242, 254, 0.2);
}

.glow-effect-tk:hover {
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.6), 0 0 50px rgba(0, 242, 254, 0.4);
    transform: translateY(-2px);
}

/* Letterboxd Button */
.btn-lb {
    background-color: transparent;
    border: 2px solid #00e054;
    color: #fff;
}

.btn-lb:hover {
    background-color: #00e054;
    color: #fff;
}

.glow-effect-lb {
    box-shadow: 0 0 15px rgba(0, 224, 84, 0.4), 0 0 30px rgba(0, 224, 84, 0.2);
}

.glow-effect-lb:hover {
    box-shadow: 0 0 25px rgba(0, 224, 84, 0.6), 0 0 50px rgba(0, 224, 84, 0.4);
    transform: translateY(-2px);
}

/* Videos Section */
.videos-section {
    padding: 100px 0;
    background: linear-gradient(to top, var(--bg-dark), #111);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-top: -20px;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper.vertical-video {
    padding-bottom: 120%; /* Instagram Reel Aspect Ratio */
}

.video-wrapper iframe, .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.video-info {
    padding: 20px;
}

.platform-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.yt-tag {
    background-color: #ff0000;
}

.ig-tag {
    background-color: #E1306C;
}

.tk-tag {
    background-color: #00f2fe;
    color: #000;
}

.video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.watch-link {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.yt-link {
    color: #ff4444;
}

.ig-link {
    color: #ff6b9e;
}

.tk-link {
    color: #00f2fe;
}

.watch-link:hover {
    opacity: 0.8;
}

/* Google Calendar Iframe Container */
.calendar-container {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 10px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.calendar-container iframe {
    border-radius: 8px;
    filter: invert(0.9) hue-rotate(180deg) contrast(1.1); /* Um truque para escurecer caso o Google mande branco, mas o bgcolor do link já ajuda */
}

/* Review Page Styles */
.review-hero {
    height: 70vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}

.review-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 20%;
    z-index: -2;
    filter: brightness(0.4) contrast(1.1);
}

.review-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,12,16,0.3) 0%, var(--bg-dark) 100%);
    z-index: -1;
}

.review-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.back-link {
    display: inline-block;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--secondary-color);
}

.review-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 10px;
    margin-top: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.review-author {
    color: var(--text-muted);
    font-size: 1rem;
}

.review-main {
    display: flex;
    gap: 50px;
    padding: 50px 20px 100px;
    align-items: flex-start;
}

.review-sidebar {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    position: sticky;
    top: 100px;
}

.ratings-panel {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.ratings-panel h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
}

.final-score {
    text-align: center;
    margin-bottom: 30px;
}

.score-number {
    font-size: 3.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: var(--secondary-color);
    text-shadow: 0 0 15px rgba(2, 190, 131, 0.4);
}

.score-max {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.rating-label {
    color: var(--text-light);
    font-weight: 600;
}

.stars {
    color: #444; /* Estrela inativa */
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.stars .active {
    color: #ffd700; /* Dourado/Amarelo */
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.review-article {
    flex: 2;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ddd;
}

.lead-paragraph {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
}

.review-article h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #fff;
}

.review-article p {
    margin-bottom: 25px;
}

.article-image {
    width: 100%;
    border-radius: 12px;
    margin: 30px 0;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Responsive Design Overrides */
@media (max-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }
    .about-container {
        flex-direction: column;
    }
    .events-timeline::before {
        left: 30px;
    }
    .event-date {
        width: 60px;
        height: 60px;
    }
    .event-date .day {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 12, 16, 0.98);
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
        border-bottom: 1px solid var(--glass-border);
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .btn-nav {
        display: none;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .newsletter-form {
        flex-direction: column;
        border-radius: 12px;
        background: transparent;
        border: none;
        padding: 0;
    }
    .newsletter-form input {
        background: rgba(255, 255, 255, 0.05);
        padding: 15px 20px;
        border-radius: 8px;
        border: 1px solid var(--glass-border);
    }
    .newsletter-form button {
        border-radius: 8px;
    }
    .event-card {
        flex-direction: column;
        gap: 15px;
    }
    .events-timeline::before {
        display: none;
    }
    .event-details::before {
        display: none;
    }
    
    .review-main {
        flex-direction: column;
    }
    .review-sidebar {
        max-width: 100%;
        position: static;
        margin-bottom: 40px;
    }
    .review-title {
        font-size: 2.5rem;
    }
}
