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

/* Testing Phase Banner */
.testing-banner {
    color: var(--primary);
    text-align: center;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 16px;
    text-transform: lowercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.testing-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
}

.container {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

/* Animated Background Elements */
.background-art {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    font-size: 120px;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 20%;
    right: 15%;
    font-size: 80px;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    font-size: 100px;
    animation-delay: -10s;
}

.floating-element:nth-child(4) {
    bottom: 15%;
    right: 25%;
    font-size: 90px;
    animation-delay: -15s;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(20px) rotate(270deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

.main-content {
    border-radius: 30px;
    padding: 80px 60px;
    max-width: 1000px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.logo-container {
    margin-bottom: 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-subtitle {
    font-size: 18px;
    color: var(--primary);
    opacity: 0.8;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.tagline {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.description {
    font-size: 20px;
    color: var(--primary);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.cta-section {
    margin-bottom: 60px;
}

.cta-button {
    display: inline-block;
    color: var(--functional);
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 114, 128, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.inspiration-section {
    margin-top: 80px;
}

.inspiration-title {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.inspiration-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.inspiration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1), rgba(156, 163, 175, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.inspiration-card:hover {
    transform: translateY(-10px);
    border-color: rgba(107, 114, 128, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.inspiration-card:hover::before {
    opacity: 1;
}

.inspiration-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.inspiration-card p {
    color: var(--primary);
    opacity: 0.8;
    line-height: 1.6;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-content {
        padding: 50px 30px;
    }

    .logo {
        width: 150px;
    }

    .tagline {
        font-size: 24px;
    }

    .description {
        font-size: 18px;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 18px;
    }

    .inspiration-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .floating-element {
        font-size: 60px !important;
    }
}

/* Additional Art Elements */
.art-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    height: 1px;
    animation: lineMove 15s infinite linear;
}

.art-line:nth-child(1) {
    top: 20%;
    width: 200px;
    left: -200px;
    animation-delay: 0s;
}

.art-line:nth-child(2) {
    top: 60%;
    width: 150px;
    right: -150px;
    animation-delay: -7s;
}

.art-line:nth-child(3) {
    top: 80%;
    width: 180px;
    left: -180px;
    animation-delay: -14s;
}

@keyframes lineMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(100vw + 200px)); }
}

/* Recent posts marquee */
.marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 40px auto 0;
    padding: 10px 0;
}

.marquee__track {
    display: inline-flex;
    align-items: stretch;
    gap: 16px;
    white-space: nowrap;
    will-change: transform;
    animation: marquee-scroll 35s linear infinite;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.post-card {
    display: inline-flex;
    flex-direction: column;
    min-width: 280px;
    max-width: 320px;
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 12px 14px;
    color: var(--primary);
    text-align: left;
}

.post-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.post-card__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.post-card__author {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 600;
}

.post-card__whinge-score {
    margin-left: 6px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
}

.post-card__whinge-score i {
    font-size: 12px;
}

.post-card__body {
    font-size: 15px;
    color: var(--primary);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal !important;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .marquee__track { animation-duration: 50s; }
    .post-card { min-width: 240px; max-width: 260px; }
}