/* PUNK VENTURES LLC - AUTHENTIC ZINE STYLE */

@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Caveat:wght@400;700&family=Special+Elite&family=Kalam:wght@300;400;700&display=swap');

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

body {
    font-family: 'Kalam', cursive;
    background: #1a1a1a;
    color: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,0,0,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0,255,0,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0,0,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.main-title {
    font-family: 'Special Elite', monospace;
    font-size: 6rem;
    color: #ff0080;
    margin: 0;
    margin-bottom: 3rem;
    text-shadow: 3px 3px 0px #000;
    letter-spacing: 3px;
    transform: rotate(-1deg);
    position: relative;
}

.main-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: #ffff00;
    z-index: -1;
    transform: rotate(1deg);
    box-shadow: 5px 5px 0px #000;
}


/* Main Section */
.main-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    background: #f5f5dc;
    border: 3px solid #000;
    box-shadow: 8px 8px 0px #000;
    position: relative;
    transform: rotate(0.5deg);
}

.section-title {
    font-family: 'Special Elite', monospace;
    font-size: 2.5rem;
    color: #ff0080;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 0px #000;
    letter-spacing: 2px;
    transform: rotate(-0.5deg);
    position: relative;
}

.section-title::before {
    content: '★';
    color: #ff6b6b;
    margin-right: 0.5rem;
}

.section-title::after {
    content: '★';
    color: #ff6b6b;
    margin-left: 0.5rem;
}

.section-description {
    font-family: 'Kalam', cursive;
    font-size: 1.2rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.subsection-title {
    font-family: 'Special Elite', monospace;
    font-size: 1.8rem;
    color: #ff0080;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    text-shadow: 2px 2px 0px #000;
    letter-spacing: 1px;
    transform: rotate(0.3deg);
}

.survival-subtitle {
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    color: #ff6b6b;
    margin-bottom: 2rem;
    font-style: italic;
    transform: rotate(-1deg);
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.project-card {
    background: #fff;
    border: 3px solid #000;
    padding: 1.5rem;
    box-shadow: 4px 4px 0px #000;
    transition: all 0.3s ease;
    position: relative;
    transform: rotate(0.3deg);
}

.project-card:nth-child(even) {
    transform: rotate(-0.2deg);
    background: #f0f0f0;
}

.project-card:hover {
    transform: rotate(-1deg) scale(1.02);
    box-shadow: 6px 6px 0px #000;
    border-color: #ff6b6b;
}

.project-name {
    font-family: 'Special Elite', monospace;
    font-size: 1.3rem;
    color: #ff0080;
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 0px #000;
    letter-spacing: 1px;
}

.project-desc {
    font-family: 'Kalam', cursive;
    font-size: 1rem;
    color: #000;
    opacity: 0.9;
    line-height: 1.5;
}

.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-link:hover {
    transform: rotate(-1deg) scale(1.02);
    box-shadow: 6px 6px 0px #000;
    border-color: #ff6b6b;
}

.project-link:hover .project-name {
    color: #ff6b6b;
}

/* Zine Section */
.zine-card {
    background: #fff;
    border: 3px solid #ff0080;
    padding: 2rem;
    box-shadow: 5px 5px 0px #000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: rotate(-0.3deg);
}

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

.zine-card:hover::before {
    left: 100%;
}

.zine-card:hover {
    transform: rotate(1deg) scale(1.02);
    box-shadow: 7px 7px 0px #000;
}

.zine-title {
    font-family: 'Special Elite', monospace;
    font-size: 1.5rem;
    color: #ff0080;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px #000;
    letter-spacing: 1px;
}

.zine-desc {
    font-family: 'Kalam', cursive;
    font-size: 1rem;
    color: #000;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.zine-link {
    font-family: 'Special Elite', monospace;
    font-size: 1.2rem;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #ffff00;
    border: 3px solid #000;
    box-shadow: 3px 3px 0px #000;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.zine-link:hover {
    background: #ff6b6b;
    color: #fff;
    transform: rotate(2deg) scale(1.05);
    box-shadow: 5px 5px 0px #000;
}

/* Survival Guides Section */
.survival-section {
    margin-bottom: 4rem;
}

.survival-card {
    background: #fff;
    border: 3px solid #4ecdc4;
    padding: 2rem;
    box-shadow: 5px 5px 0px #000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform: rotate(0.3deg);
}

.survival-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
    transition: left 0.5s ease;
}

.survival-card:hover::before {
    left: 100%;
}

.survival-card:hover {
    transform: rotate(-1deg) scale(1.02);
    box-shadow: 7px 7px 0px #000;
}

.survival-title {
    font-family: 'Special Elite', monospace;
    font-size: 1.5rem;
    color: #4ecdc4;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0px #000;
    letter-spacing: 1px;
}

.survival-desc {
    font-family: 'Kalam', cursive;
    font-size: 1rem;
    color: #000;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.coming-soon-zine {
    font-family: 'Special Elite', monospace;
    font-size: 1.2rem;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: #ffff00;
    border: 3px solid #000;
    box-shadow: 3px 3px 0px #000;
    transform: rotate(-1deg);
}

.coming-soon-survival {
    font-family: 'Special Elite', monospace;
    font-size: 1.2rem;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: #4ecdc4;
    border: 3px solid #000;
    box-shadow: 3px 3px 0px #000;
    transform: rotate(1deg);
    position: relative;
}

.coming-soon-survival::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 20px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #000;
    transform: rotate(-15deg);
    z-index: -1;
}

.coming-soon-survival::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 20px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #000;
    transform: rotate(15deg);
    z-index: -1;
}

/* Email Signup Section */
.signup-section {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.signup-title {
    font-family: 'Special Elite', monospace;
    font-size: 1.2rem;
    color: #ff0080;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 0px #000;
    letter-spacing: 1px;
    transform: rotate(0.5deg);
}

.signup-card {
    background: #fff;
    border: 2px solid #000;
    padding: 1.5rem;
    box-shadow: 3px 3px 0px #000;
    transform: rotate(-0.2deg);
    max-width: 500px;
    margin: 0 auto;
}

.signup-desc {
    font-family: 'Kalam', cursive;
    font-size: 0.9rem;
    color: #000;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.substack-iframe {
    width: 100%;
    max-width: 480px;
    height: 320px;
    border: 2px solid #000 !important;
    background: white !important;
    box-shadow: 3px 3px 0px #000;
    margin: 0 auto;
    display: block;
}

/* Creator Section */
.creator-section {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.creator-title {
    font-family: 'Special Elite', monospace;
    font-size: 1.2rem;
    color: #ff0080;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 0px #000;
    letter-spacing: 1px;
    transform: rotate(-0.5deg);
}

.creator-card {
    background: #fff;
    border: 2px solid #000;
    padding: 1.5rem;
    box-shadow: 3px 3px 0px #000;
    transform: rotate(0.2deg);
    max-width: 500px;
    margin: 0 auto;
}

.creator-desc {
    font-family: 'Kalam', cursive;
    font-size: 0.9rem;
    color: #000;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.creator-email {
    font-family: 'Special Elite', monospace;
    font-size: 0.9rem;
    color: #ff6b6b;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.creator-email:hover {
    color: #000;
    text-shadow: 1px 1px 0px #ff6b6b;
}

/* Responsive Design */

/* Tablet and smaller desktop */
@media (max-width: 1024px) {
    .main-title {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .subsection-title {
        font-size: 1.6rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .zine-link {
        font-size: 1.1rem;
        padding: 0.7rem 1.3rem;
    }
    
    .coming-soon-zine {
        font-size: 1.1rem;
        padding: 0.7rem 1.3rem;
    }
    
    .coming-soon-survival {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
    .main-title {
        font-size: 4rem;
    }
    
    .main-section {
        padding: 0 1rem;
        transform: rotate(0.2deg);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .subsection-title {
        font-size: 1.4rem;
    }
    
    .project-card {
        padding: 1.2rem;
        transform: rotate(0.1deg);
    }
    
    .project-card:nth-child(even) {
        transform: rotate(-0.1deg);
    }
    
    .project-name {
        font-size: 1.2rem;
    }
    
    .zine-card {
        padding: 1.5rem;
        transform: rotate(-0.1deg);
    }
    
    .zine-title {
        font-size: 1.3rem;
    }
    
    .survival-section {
        margin-bottom: 3rem;
    }
    
    .survival-card {
        padding: 1.5rem;
        transform: rotate(0.1deg);
    }
    
    .survival-title {
        font-size: 1.3rem;
    }
    
    .zine-link {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    
    .coming-soon-zine {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    
    .coming-soon-survival {
        font-size: 1.2rem;
        letter-spacing: 1px;
        padding: 0.8rem;
    }
    
    .signup-card {
        padding: 1rem;
        max-width: 90%;
    }
    
    .signup-title {
        font-size: 1rem;
    }
    
    .signup-desc {
        font-size: 0.8rem;
    }
    
    .substack-iframe {
        max-width: 100%;
        height: 280px;
    }
    
    .creator-card {
        padding: 1rem;
        max-width: 90%;
    }
    
    .creator-title {
        font-size: 1rem;
    }
    
    .creator-desc {
        font-size: 0.8rem;
    }
    
    .creator-email {
        font-size: 0.8rem;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .main-title {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    .main-section {
        padding: 0 0.5rem;
        transform: rotate(0.1deg);
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .subsection-title {
        font-size: 1.3rem;
    }
    
    .project-card {
        padding: 1rem;
        transform: rotate(0.05deg);
    }
    
    .project-card:nth-child(even) {
        transform: rotate(-0.05deg);
    }
    
    .project-name {
        font-size: 1.1rem;
    }
    
    .project-desc {
        font-size: 0.9rem;
    }
    
    .zine-card {
        padding: 1.2rem;
        transform: rotate(-0.05deg);
    }
    
    .zine-title {
        font-size: 1.2rem;
    }
    
    .zine-desc {
        font-size: 0.9rem;
    }
    
    .survival-section {
        margin-bottom: 2.5rem;
    }
    
    .survival-card {
        padding: 1.2rem;
        transform: rotate(0.05deg);
    }
    
    .survival-title {
        font-size: 1.2rem;
    }
    
    .survival-desc {
        font-size: 0.9rem;
    }
    
    .zine-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .coming-soon-zine {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .coming-soon-survival {
        font-size: 1rem;
        letter-spacing: 1px;
        padding: 0.6rem;
    }
    
    .signup-card {
        padding: 0.8rem;
        max-width: 95%;
    }
    
    .signup-title {
        font-size: 0.9rem;
    }
    
    .signup-desc {
        font-size: 0.75rem;
    }
    
    .substack-iframe {
        max-width: 100%;
        height: 240px;
    }
    
    .creator-card {
        padding: 0.8rem;
        max-width: 95%;
    }
    
    .creator-title {
        font-size: 0.9rem;
    }
    
    .creator-desc {
        font-size: 0.75rem;
    }
    
    .creator-email {
        font-size: 0.75rem;
    }
}

/* Very small mobile devices */
@media (max-width: 360px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    .subsection-title {
        font-size: 1.2rem;
    }
    
    .project-name {
        font-size: 1rem;
    }
    
    .project-desc {
        font-size: 0.85rem;
    }
    
    .zine-title {
        font-size: 1.1rem;
    }
    
    .zine-desc {
        font-size: 0.85rem;
    }
    
    .survival-section {
        margin-bottom: 2rem;
    }
    
    .survival-title {
        font-size: 1.1rem;
    }
    
    .survival-desc {
        font-size: 0.85rem;
    }
    
    .zine-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .coming-soon-zine {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .coming-soon-survival {
        font-size: 0.9rem;
        letter-spacing: 1px;
        padding: 0.5rem;
    }
}

/* Footer Styles */
.footer {
    margin-top: 3rem;
    padding: 2rem 0;
    text-align: center;
    position: relative;
}

.footer-content {
    display: inline-block;
    position: relative;
}

.footer-link {
    font-family: 'Special Elite', monospace;
    font-size: 1rem;
    color: #000;
    text-decoration: none;
    background: #ffd700;
    padding: 0.8rem 1.5rem;
    border: 2px solid #000;
    box-shadow: 3px 3px 0px #000;
    transform: rotate(-2deg);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-link:hover {
    transform: rotate(-2deg) scale(1.05);
    background: #ffed4e;
    box-shadow: 4px 4px 0px #000;
}

.footer-link::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: transparent;
    border: 1px solid #000;
    transform: rotate(1deg);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-link:hover::before {
    opacity: 0.3;
}

/* Footer responsive styles */
@media (max-width: 768px) {
    .footer {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
    
    .footer-link {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .footer-link {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 360px) {
    .footer-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}