/* Page-specific styles */
.back-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Courier New', 'Monaco', monospace;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #ffffff;
    background: #000000;
    padding: 0.5rem 1rem;
    position: relative;
    overflow: hidden;
}

.back-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, 
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 0, 150, 0.3) 25%,
            rgba(0, 255, 255, 0.3) 50%,
            rgba(255, 255, 0, 0.3) 75%,
            rgba(255, 255, 255, 0.1) 100%
        ),
        linear-gradient(135deg,
            rgba(128, 0, 255, 0.2) 0%,
            rgba(0, 255, 0, 0.2) 25%,
            rgba(255, 0, 0, 0.2) 50%,
            rgba(0, 255, 255, 0.2) 75%,
            rgba(128, 0, 255, 0.2) 100%
        ),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.05) 100%
        );
    opacity: 0;
    transition: opacity 0.4s ease;
    background-size: 200% 200%, 200% 200%, 100% 100%;
    background-position: 0% 0%, 0% 0%, 0% 0%;
}

.back-link:hover::before {
    opacity: 1;
    background-position: 100% 100%, 100% 100%, 0% 0%;
    transition: opacity 0.4s ease, background-position 2s ease-in-out;
}

@keyframes holographic-shimmer {
    0% { 
        background-position: 0% 0%, 0% 0%, 0% 0%;
        opacity: 0;
    }
    50% { 
        background-position: 100% 100%, 100% 100%, 0% 0%;
        opacity: 1;
    }
    100% { 
        background-position: 0% 0%, 0% 0%, 0% 0%;
        opacity: 0;
    }
}

.back-link:hover {
    color: #000000;
    background: #ffffff;
    box-shadow: 
        0 0 20px #ffffff,
        0 0 40px rgba(255, 0, 150, 0.5),
        0 0 60px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px) scale(1.05);
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0px #000000;
    color: #ffffff;
    font-family: 'Courier New', 'Monaco', monospace;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: blink 2s infinite;
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    font-family: 'Courier New', 'Monaco', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-card {
    background: #000000;
    border-radius: 0;
    padding: 2.5rem;
    border: 4px solid #ffffff;
    width: 100%;
    position: relative;
    box-shadow: 
        0 0 0 2px #000000,
        0 0 0 6px #ffffff,
        0 0 20px #ffffff;
    transition: all 0.4s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 0 2px #000000,
        0 0 0 6px #ffffff,
        0 0 30px #ffffff,
        0 10px 40px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(255, 0, 150, 0.3),
        0 0 80px rgba(0, 255, 255, 0.3);
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    pointer-events: none;
}

/* Placeholder content styles */
.placeholder-content {
    text-align: center;
    padding: 3rem;
    position: relative;
    z-index: 1;
    border: 4px solid #ffffff;
    background: #000000;
    box-shadow: 0 0 20px #ffffff;
    transition: all 0.4s ease;
}

.placeholder-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px #ffffff, 0 10px 40px rgba(255, 255, 255, 0.3);
}

.placeholder-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
    pointer-events: none;
}

.placeholder-content h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Courier New', 'Monaco', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px #000000;
    font-weight: bold;
    transition: all 0.3s ease;
}

.placeholder-content:hover h2 {
    text-shadow: 
        2px 2px 0px #000000,
        0 0 20px #ffffff,
        0 0 40px rgba(255, 0, 150, 0.8),
        0 0 60px rgba(0, 255, 255, 0.8);
    animation: text-glow 1s ease-in-out infinite;
}

@keyframes text-glow {
    0%, 100% { 
        text-shadow: 
            2px 2px 0px #000000,
            0 0 20px #ffffff,
            0 0 40px rgba(255, 0, 150, 0.8),
            0 0 60px rgba(0, 255, 255, 0.8);
    }
    50% { 
        text-shadow: 
            2px 2px 0px #000000,
            0 0 30px #ffffff,
            0 0 50px rgba(255, 0, 150, 1),
            0 0 70px rgba(0, 255, 255, 1),
            0 0 90px rgba(255, 255, 0, 0.8);
    }
}

.placeholder-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-family: 'Courier New', 'Monaco', monospace;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.placeholder-content:hover p {
    text-shadow: 0 0 10px #ffffff, 0 0 20px rgba(255, 0, 150, 0.6);
}

.placeholder-icon {
    font-size: 4rem;
    margin-top: 2rem;
    text-shadow: 2px 2px 0px #000000;
    animation: blink 1.5s infinite;
    transition: all 0.3s ease;
}

.placeholder-content:hover .placeholder-icon {
    transform: scale(1.2) rotate(10deg);
    animation: ufo-float 1s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 0, 150, 0.8)) 
            drop-shadow(0 0 40px rgba(0, 255, 255, 0.8));
}

/* About page styles */
.about-section {
    margin-bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 1;
    border: 2px solid #ffffff;
    padding: 1.5rem;
    background: #000000;
    transition: all 0.4s ease;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, 
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 0, 150, 0.2) 25%,
            rgba(0, 255, 255, 0.2) 50%,
            rgba(255, 255, 0, 0.2) 75%,
            rgba(255, 255, 255, 0.05) 100%
        ),
        linear-gradient(135deg,
            rgba(128, 0, 255, 0.15) 0%,
            rgba(0, 255, 0, 0.15) 25%,
            rgba(255, 0, 0, 0.15) 50%,
            rgba(0, 255, 255, 0.15) 75%,
            rgba(128, 0, 255, 0.15) 100%
        ),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.02) 0%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.02) 100%
        );
    opacity: 0;
    transition: opacity 0.4s ease;
    background-size: 200% 200%, 200% 200%, 100% 100%;
    background-position: 0% 0%, 0% 0%, 0% 0%;
}

.about-section:hover::before {
    opacity: 1;
    background-position: 100% 100%, 100% 100%, 0% 0%;
    transition: opacity 0.4s ease, background-position 3s ease-in-out;
}

.about-section:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 25px #ffffff,
        0 0 50px rgba(255, 0, 150, 0.4),
        0 0 70px rgba(0, 255, 255, 0.4);
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: bold;
    font-family: 'Courier New', 'Monaco', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px #000000;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.about-section:hover h2 {
    text-shadow: 
        2px 2px 0px #000000,
        0 0 15px #ffffff,
        0 0 30px rgba(255, 0, 150, 0.8),
        0 0 45px rgba(0, 255, 255, 0.8);
}

.about-section p {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.7;
    font-family: 'Courier New', 'Monaco', monospace;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.about-section:hover p {
    text-shadow: 0 0 8px #ffffff, 0 0 16px rgba(255, 0, 150, 0.6);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-item {
    background: #000000;
    padding: 1.5rem;
    border-radius: 0;
    border: 3px solid #ffffff;
    box-shadow: 0 0 15px #ffffff;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.value-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, 
        rgba(255, 0, 150, 0.2),
        rgba(0, 255, 255, 0.2),
        rgba(255, 255, 0, 0.2),
        rgba(0, 255, 0, 0.2),
        rgba(255, 0, 0, 0.2),
        rgba(128, 0, 255, 0.2)
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.value-item:hover::after {
    width: 200px;
    height: 200px;
}

.value-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 
        0 0 25px #ffffff, 
        0 10px 30px rgba(255, 255, 255, 0.3),
        0 0 50px rgba(255, 0, 150, 0.4),
        0 0 70px rgba(0, 255, 255, 0.4);
}

.value-item:hover::before {
    height: 8px;
    background: linear-gradient(90deg, 
        #ffffff, 
        rgba(255, 0, 150, 0.8),
        rgba(0, 255, 255, 0.8),
        rgba(255, 255, 0, 0.8),
        #ffffff
    );
}

.value-item h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-family: 'Courier New', 'Monaco', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 0px #000000;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.value-item:hover h3 {
    text-shadow: 
        1px 1px 0px #000000,
        0 0 15px #ffffff,
        0 0 30px rgba(255, 0, 150, 0.8),
        0 0 45px rgba(0, 255, 255, 0.8);
}

.value-item p {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
    font-family: 'Courier New', 'Monaco', monospace;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.value-item:hover p {
    text-shadow: 0 0 8px #ffffff, 0 0 16px rgba(255, 0, 150, 0.6);
}

/* Contact form styles */
.contact-form {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    border: 4px solid #ffffff;
    background: #000000;
    padding: 2.5rem;
    box-shadow: 0 0 20px #ffffff;
    transition: all 0.4s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px #ffffff, 0 10px 40px rgba(255, 255, 255, 0.3);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.form-group {
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.form-group:hover {
    transform: translateX(5px);
}

.form-group label {
    display: block;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-family: 'Courier New', 'Monaco', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 0px #000000;
    transition: all 0.3s ease;
}

.form-group:hover label {
    text-shadow: 
        1px 1px 0px #000000,
        0 0 10px #ffffff,
        0 0 20px rgba(255, 0, 150, 0.6);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 3px solid #ffffff;
    border-radius: 0;
    font-size: 1rem;
    font-family: 'Courier New', 'Monaco', monospace;
    transition: all 0.4s ease;
    background: #000000;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-weight: bold;
}

.form-group select option {
    background: #000000;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 
        0 0 20px #ffffff,
        0 0 40px rgba(255, 0, 150, 0.4),
        0 0 60px rgba(0, 255, 255, 0.4);
    background: #000000;
    transform: scale(1.02);
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    color: #ffffff;
    font-family: 'Courier New', 'Monaco', monospace;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    text-shadow: 0 0 10px #ffffff, 0 0 20px rgba(255, 0, 150, 0.6);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    margin-bottom: 0;
    transform: scale(1.5);
    accent-color: #ffffff;
}

.submit-btn {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    margin-top: 1rem;
    font-family: 'Courier New', 'Monaco', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid #ffffff;
    box-shadow: 0 0 20px #ffffff;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, 
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 0, 150, 0.3) 25%,
            rgba(0, 255, 255, 0.3) 50%,
            rgba(255, 255, 0, 0.3) 75%,
            rgba(255, 255, 255, 0.1) 100%
        ),
        linear-gradient(135deg,
            rgba(128, 0, 255, 0.2) 0%,
            rgba(0, 255, 0, 0.2) 25%,
            rgba(255, 0, 0, 0.2) 50%,
            rgba(0, 255, 255, 0.2) 75%,
            rgba(128, 0, 255, 0.2) 100%
        ),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.05) 100%
        );
    opacity: 0;
    transition: opacity 0.4s ease;
    background-size: 200% 200%, 200% 200%, 100% 100%;
    background-position: 0% 0%, 0% 0%, 0% 0%;
}

.submit-btn:hover::before {
    opacity: 1;
    background-position: 100% 100%, 100% 100%, 0% 0%;
    transition: opacity 0.4s ease, background-position 2s ease-in-out;
}

.submit-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 
        0 0 30px #ffffff, 
        0 10px 30px rgba(255, 255, 255, 0.4);
    background: #000000;
    border-color: #ffffff;
}

.submit-btn:active {
    transform: scale(0.98) translateY(0px);
}

/* Contact info styles */
.contact-info {
    border-top: 3px solid #ffffff;
    padding-top: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: bold;
    font-family: 'Courier New', 'Monaco', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px #000000;
    transition: all 0.3s ease;
}

.contact-info:hover h3 {
    text-shadow: 
        2px 2px 0px #000000,
        0 0 15px #ffffff,
        0 0 30px rgba(255, 0, 150, 0.8),
        0 0 45px rgba(0, 255, 255, 0.8);
}

.contact-methods {
    display: grid;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
    background: #000000;
    border: 2px solid #ffffff;
    border-radius: 0;
    box-shadow: 0 0 10px #ffffff;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, 
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 0, 150, 0.2) 25%,
            rgba(0, 255, 255, 0.2) 50%,
            rgba(255, 255, 0, 0.2) 75%,
            rgba(255, 255, 255, 0.05) 100%
        ),
        linear-gradient(135deg,
            rgba(128, 0, 255, 0.15) 0%,
            rgba(0, 255, 0, 0.15) 25%,
            rgba(255, 0, 0, 0.15) 50%,
            rgba(0, 255, 255, 0.15) 75%,
            rgba(128, 0, 255, 0.15) 100%
        ),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.02) 0%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.02) 100%
        );
    opacity: 0;
    transition: opacity 0.4s ease;
    background-size: 200% 200%, 200% 200%, 100% 100%;
    background-position: 0% 0%, 0% 0%, 0% 0%;
}

.contact-method:hover::before {
    opacity: 1;
    background-position: 100% 100%, 100% 100%, 0% 0%;
    transition: opacity 0.4s ease, background-position 3s ease-in-out;
}

.contact-method:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 0 20px #ffffff, 
        0 5px 20px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 0, 150, 0.4),
        0 0 60px rgba(0, 255, 255, 0.4);
}

.contact-method strong {
    color: #ffffff;
    min-width: 80px;
    font-weight: bold;
    font-family: 'Courier New', 'Monaco', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0px #000000;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-method:hover strong {
    text-shadow: 
        1px 1px 0px #000000,
        0 0 10px #ffffff,
        0 0 20px rgba(255, 0, 150, 0.6);
}

.contact-method a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Courier New', 'Monaco', monospace;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-method a:hover {
    text-decoration: underline;
    color: #ffffff;
    text-shadow: 0 0 15px #ffffff, 0 0 25px rgba(255, 0, 150, 0.8);
}

.contact-method p {
    margin: 0;
    color: #ffffff;
    line-height: 1.5;
    font-family: 'Courier New', 'Monaco', monospace;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-method:hover p {
    text-shadow: 0 0 8px #ffffff, 0 0 16px rgba(255, 0, 150, 0.6);
}

/* Responsive design for pages */
@media (max-width: 768px) {
    .content-card {
        padding: 1.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .about-section h2 {
        font-size: 1.7rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .contact-method strong {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .content-card {
        padding: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .about-section h2 {
        font-size: 1.5rem;
    }
    
    .about-section p {
        font-size: 1.1rem;
    }
    
    .placeholder-content h2 {
        font-size: 1.8rem;
    }
    
    .placeholder-content p {
        font-size: 1.1rem;
    }
} 

.about-main-content {
    width: 100vw;
    display: block;
    padding: 0;
} 

.about-container {
    width: 100vw;
    max-width: none;
    margin: 0;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
} 