h1 {
	font-size: 16px;
	margin-top: 0;
}

p {
	color: rgb(107, 114, 128);
	font-size: 15px;
	margin-bottom: 10px;
	margin-top: 5px;
}

.card {
	max-width: 620px;
	margin: 0 auto;
	padding: 16px;
	border: 1px solid lightgray;
	border-radius: 16px;
}

.card p:last-child {
	margin-bottom: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #111;
}

section {
    padding: 0 1.5rem;
}

.grunge-bg {
    background: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%23ffffff10" stroke-width="8"/></svg>'),
        linear-gradient(to bottom, #000000, #000000);
    background-size: 20px 20px, cover;
}

.white-section {
    background-color: #fff;
    color: #111;
}

.grunge-border {
    position: relative;
    border: 2px solid #fff;
}

.grunge-border::after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid #ffffff30;
    pointer-events: none;
}

.grunge-text {
    text-shadow: 2px 2px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
}

.grunge-title {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
}

.grunge-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.grunge-button {
    position: relative;
    overflow: hidden;
    box-shadow: 3px 3px 0 #000;
}

.grunge-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #ffffff30, transparent);
    transition: 0.5s;
}

.grunge-button:hover::before {
    left: 100%;
}

.grunge-overlay {
    position: relative;
}

.grunge-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="%23ffffff10" stroke-width="1"/></svg>');
    background-size: 20px 20px;
    pointer-events: none;
}

.grunge-card {
    background: linear-gradient(145deg, #111111, #000000);
    border: 1px solid #ffffff20;
    transition: all 0.3s ease;
}

.white-card {
    background: #fff;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #eee;
    transition: all 0.2s ease;
}

.grunge-card:hover {
    transform: translateY(-5px);
    box-shadow: -10px -10px 0px #000000, 10px 10px 0px #ffffff;
}

.white-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 20px rgba(0,0,0,0.15);
}

.grunge-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff50, transparent);
    margin: 20px 0;
}

.white-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #11111150, transparent);
    margin: 20px 0;
}

.grunge-highlight {
    position: relative;
    display: inline-block;
}

.grunge-highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: #ffff0030;
    z-index: -1;
    transform: skewX(-15deg);
}

.white-highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: #ffeb3b;
    z-index: -1;
    transform: skewX(-15deg);
}

@keyframes grungePulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.grunge-pulse {
    animation: grungePulse 2s infinite;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.text-small {
    font-size: 0.95rem;
    line-height: 1.6;
}

.text-medium {
    font-size: 1.05rem;
    line-height: 1.6;
}

.profile-photo {
    border-radius: 100px;
    box-shadow: -2px 3px 0px 1px;
}