/* Hero section styling */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    padding-top: 5rem;
}

.content {
    width: 100%;
    position: relative;
    z-index: 10;
    margin-top: 2rem;
}

/* Card styling */
.swag-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(251, 191, 36, 0.1);
    backdrop-filter: blur(10px);
}

.swag-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.1);
}

/* Image container */
.swag-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(251, 191, 36, 0.05), transparent);
}

.swag-image img {
    transition: transform 0.3s ease;
    max-width: 80%;
    height: auto;
}

.swag-card:hover .swag-image img {
    transform: scale(1.05);
}

/* Glitch effect for title */
.hero-title {
    color: #FBBF24;
    position: relative;
    text-shadow: 2px 2px 10px rgba(251, 191, 36, 0.3);
}

.hero-title.glitch::before,
.hero-title.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-title.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff0000;
    animation: glitch-1 2s infinite linear alternate-reverse;
}

.hero-title.glitch::after {
    left: -2px;
    text-shadow: 2px 0 #00ff00;
    animation: glitch-2 2s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
    0% { clip-path: inset(20% 0 30% 0); }
    20% { clip-path: inset(60% 0 10% 0); }
    40% { clip-path: inset(40% 0 50% 0); }
    60% { clip-path: inset(80% 0 5% 0); }
    80% { clip-path: inset(10% 0 70% 0); }
    100% { clip-path: inset(30% 0 20% 0); }
}

@keyframes glitch-2 {
    0% { clip-path: inset(30% 0 20% 0); }
    20% { clip-path: inset(10% 0 70% 0); }
    40% { clip-path: inset(80% 0 5% 0); }
    60% { clip-path: inset(40% 0 50% 0); }
    80% { clip-path: inset(60% 0 10% 0); }
    100% { clip-path: inset(20% 0 30% 0); }
}
