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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
}

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

/* Header */
.header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

/* Rubik's Cube Logo */
.logo {
    width: 60px;
    height: 60px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate3d 6s infinite linear;
    flex-shrink: 0;
}

.cube-face {
    position: absolute;
    width: 60px;
    height: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1px;
    padding: 3px;
}

.cube-square {
    border-radius: 2px;
    border: 1px solid rgba(0,0,0,0.2);
}

.front { transform: translateZ(30px); }
.back { transform: translateZ(-30px) rotateY(180deg); }
.right { transform: rotateY(90deg) translateZ(30px); }
.left { transform: rotateY(-90deg) translateZ(30px); }
.top { transform: rotateX(90deg) translateZ(30px); }
.bottom { transform: rotateX(-90deg) translateZ(30px); }

/* Rubik's cube colors */
.cube-white { background: #ffffff; }
.cube-red { background: #ff3333; }
.cube-blue { background: #3333ff; }
.cube-orange { background: #ff9933; }
.cube-green { background: #33cc33; }
.cube-yellow { background: #ffff33; }

@keyframes rotate3d {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    25% { transform: rotateX(90deg) rotateY(90deg); }
    50% { transform: rotateX(180deg) rotateY(180deg); }
    75% { transform: rotateX(270deg) rotateY(270deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

.site-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin: 0;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    margin-top: 0.5rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .logo-container {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }

    .title-stack {
        text-align: left;
    }
}



/* Main Content Grid */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.card h2 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.next-event {
    grid-column: 1 / -1;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,107,107,0.2), rgba(78,205,196,0.2));
}

.date-large {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    color: #fff;
}

.location {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Location link styling */
.location-link {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.location-link:hover {
    text-decoration-color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* Photo Albums */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.album-card {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
}

.album-card:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.album-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.countdown-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1rem;
    min-width: 80px;
}

.countdown-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.countdown-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Activities Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.game-item {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.game-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.game-item:hover .activity-icon {
    animation-play-state: paused;
    transform: translateY(-5px) scale(1.1);
}

/* Emoji Icons for Activities */
.emoji-icon {
    font-size: 2.5rem;
    line-height: 60px;
    text-align: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem auto;
    animation: float 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.game-item:hover .emoji-icon {
    animation-play-state: paused;
    transform: translateY(-5px) scale(1.1);
}


/* Activity Icons */
.activity-icon {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 0 auto 1rem auto;
    animation: float 3s ease-in-out infinite;
}

/* D20 Die */
.d20-new {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    position: relative;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    transform: rotate(45deg);
}

.d20-new::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: inherit;
}

.d20-new::after {
    content: 'd20';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-weight: bold;
    font-size: 0.8rem;
    color: white;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

/* Retro Computer */
.retro-computer {
    width: 60px;
    height: 60px;
    background: linear-gradient(to bottom, #f0f0f0, #d0d0d0);
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.retro-computer::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    height: 35px;
    background: #000;
    border-radius: 3px;
}

.retro-computer::after {
    content: '>_';
    position: absolute;
    top: 14px;
    left: 12px;
    color: #00ff00;
    font-family: monospace;
    font-size: 0.7rem;
    animation: blink 1.5s infinite;
}

/* Board Games */
.board-game {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    position: relative;
}

.board-game::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    background: #F5DEB3;
    border-radius: 4px;
    background-image: 
        linear-gradient(90deg, #8B4513 1px, transparent 1px),
        linear-gradient(0deg, #8B4513 1px, transparent 1px);
    background-size: 12px 12px;
}

.board-game::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    box-shadow: 
        16px 0 0 #4ecdc4,
        0 16px 0 #f9ca24,
        16px 16px 0 #45b7d1;
}

/* PowerPoint/Presentation Icon - More PowerPoint-like */
.presentation {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D73502, #FF6B35);
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    position: relative;
}

.presentation::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: white;
    border-radius: 4px;
}

.presentation::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 12px;
    width: 20px;
    height: 3px;
    background: #D73502;
    border-radius: 1px;
    box-shadow: 
        0 6px 0 #D73502,
        0 12px 0 #D73502,
        24px -6px 0 8px #FFB800,
        24px 0 0 8px #FFB800,
        24px 6px 0 8px #FFB800;
}

/* Deep Convos - Speech Bubbles */
.fellowship {
    width: 60px;
    height: 60px;
    background: transparent;
    position: relative;
}

.fellowship::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 35px;
    height: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    clip-path: polygon(0 0, 100% 0, 100% 75%, 25% 75%, 15% 100%, 20% 75%, 0 75%);
}

.fellowship::after {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 35px;
    height: 30px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    clip-path: polygon(0 25%, 80% 25%, 85% 0, 80% 25%, 100% 25%, 100% 100%, 0 100%);
}

/* Circuit Board */
.circuit {
    width: 60px;
    height: 60px;
    background: #1a472a;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.circuit::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: 
        linear-gradient(90deg, #4ecdc4 1px, transparent 1px),
        linear-gradient(0deg, #4ecdc4 1px, transparent 1px);
    background-size: 15px 15px;
}

.circuit::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 6px;
    height: 6px;
    background: #ff6b6b;
    border-radius: 50%;
    box-shadow: 
        15px 0 0 #4ecdc4,
        0 15px 0 #f9ca24,
        15px 15px 0 #45b7d1;
}

/* Full Pixel Heart */
.pixel-heart {
    width: 60px;
    height: 60px;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.pixel-heart::before,
.pixel-heart::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b6b, #ff4757);
    border-radius: 13px 13px 0 0;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
    top: 3px;
    left: 4px;
}

.pixel-heart::after {
    left: 22px;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

/* Testimonials */
.testimonial {
    background: rgba(255,255,255,0.05);
    border-left: 4px solid #4ecdc4;
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    height: 100%;
}


.testimonial-author {
    margin-top: 1rem;
    font-weight: 600;
    opacity: 0.8;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Stagger the float animations */
.activity-icon:nth-child(2n) {
    animation-delay: -1s;
}

.activity-icon:nth-child(3n) {
    animation-delay: -2s;
}

/* Fun hover effects */
.card:hover .card-icon {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive */
@media (max-width: 768px) {
    .main-grid {
        grid-template-columns: 1fr;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .countdown {
        flex-wrap: wrap;
    }

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    flex-direction: column; /* Use column by default */
}

.title-stack {
    max-width: 800px;
}


}