/* Work Page Styles */

/* Hero Section */
.work-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 0 50px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    z-index: 1;
}

/* Project Filter Section */
.project-filter {
    padding: 50px 0;
    background-color: rgba(10, 25, 47, 0.3);
    position: relative;
    z-index: 2;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid var(--yellow);
    color: var(--text);
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--yellow);
    transition: left 0.3s;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--black);
}

/* Projects Terminal Section */
.projects-terminal {
    padding: 50px 0 100px;
    background-color: rgba(2, 4, 6, 0.5);
    position: relative;
    z-index: 1;
}

.terminal-window {
    background-color: rgba(10, 25, 47, 0.8);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(100, 255, 218, 0.1);
    margin-bottom: 30px;
}

.terminal-header {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
}

.terminal-buttons {
    display: flex;
    margin-right: 15px;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.terminal-button.close {
    background-color: #ff5f56;
}

.terminal-button.minimize {
    background-color: #ffbd2e;
}

.terminal-button.maximize {
    background-color: #27c93f;
}

.terminal-title {
    color: var(--text);
    font-size: 14px;
    opacity: 0.7;
}

.terminal-body {
    padding: 20px;
    font-family: 'Share Tech Mono', monospace;
}

.terminal-prompt {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.prompt {
    color: var(--terminal-green);
    margin-right: 10px;
}

.command {
    color: var(--text);
}

/* Projects Grid */
.projects-grid {
    margin-bottom: 20px;
}

.project-file {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.project-file::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 227, 76, 0.1), transparent);
    transition: left 0.5s;
}

.project-file:hover::before {
    left: 100%;
}

.project-file:hover {
    background-color: rgba(244, 227, 76, 0.05);
    border-left-color: var(--yellow);
    transform: translateX(5px);
}

.file-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(10, 25, 47, 0.5);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--yellow);
    margin-right: 15px;
    flex-shrink: 0;
}

.file-info {
    flex-grow: 1;
}

.file-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 5px;
}

.file-details {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.7;
    margin-bottom: 8px;
}

.file-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.tag.custom {
    background-color: rgba(100, 255, 218, 0.2);
    color: var(--green);
}

.tag.wordpress {
    background-color: rgba(244, 227, 76, 0.2);
    color: var(--yellow);
}

.tag.ecommerce {
    background-color: rgba(255, 99, 71, 0.2);
    color: #ff6347;
}

.tag.responsive {
    background-color: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
}

.tag.interactive {
    background-color: rgba(255, 165, 0, 0.2);
    color: #ffa500;
}

.file-actions {
    margin-left: 15px;
}

.action-btn {
    padding: 8px 15px;
    background-color: rgba(244, 227, 76, 0.1);
    border: 1px solid var(--yellow);
    border-radius: 6px;
    color: var(--yellow);
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn:hover {
    background-color: var(--yellow);
    color: var(--black);
}

/* Project Modal */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.project-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background-color: rgba(10, 25, 47, 0.9);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.project-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--yellow);
}

.modal-close {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--yellow);
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.project-gallery {
    position: relative;
}

.main-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.gallery-prev,
.gallery-next {
    width: 40px;
    height: 40px;
    background-color: rgba(244, 227, 76, 0.1);
    border: 1px solid var(--yellow);
    border-radius: 50%;
    color: var(--yellow);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-prev:hover,
.gallery-next:hover {
    background-color: var(--yellow);
    color: var(--black);
}

.project-info h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--yellow);
    margin-bottom: 15px;
}

.project-description p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text);
}

.project-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.detail-item h5 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 5px;
}

.detail-item p {
    color: var(--text);
    opacity: 0.8;
}

.project-link {
    color: var(--yellow);
    text-decoration: none;
    transition: color 0.3s;
}

.project-link:hover {
    color: var(--text);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    padding: 3px 8px;
    background-color: rgba(244, 227, 76, 0.1);
    border: 1px solid var(--yellow);
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--yellow);
}

.project-features {
    margin-bottom: 20px;
}

.project-features ul {
    list-style: none;
    padding-left: 0;
}

.project-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text);
}

.project-features li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-size: 0.8rem;
}

.project-results {
    margin-bottom: 20px;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.result-item {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.result-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 5px;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.8;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background-color: rgba(10, 25, 47, 0.3);
    text-align: center;
}

.cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--yellow);
}

.cta-subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border: 2px solid var(--yellow);
    color: var(--text);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    z-index: 1;
}

.cta-button.primary {
    background-color: var(--yellow);
    color: var(--black);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--yellow);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue);
    transition: left 0.3s;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(244, 227, 76, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .project-details-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .project-file {
        flex-direction: column;
        text-align: center;
    }
    
    .file-icon {
        margin: 0 auto 15px;
    }
    
    .file-actions {
        margin: 15px 0 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .file-details {
        flex-direction: column;
        gap: 5px;
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-body {
        padding: 15px;
    }
}
/* Innovative Code Hover Effect */
.project-file {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.code-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.95);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.code-snippet {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    color: var(--terminal-green);
    line-height: 1.4;
    text-align: left;
    width: 100%;
}

.code-line {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-file:hover {
    background-color: rgba(244, 227, 76, 0.05);
    border-left-color: var(--yellow);
    transform: translateX(5px);
}

.project-file:hover .code-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-file:hover .file-info,
.project-file:hover .file-icon,
.project-file:hover .file-actions {
    opacity: 0.3;
}

/* Glitch Effect on Hover */
.project-file:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(244, 227, 76, 0.1) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    animation: code-scan 0.6s ease-out forwards;
}

@keyframes code-scan {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Binary Rain Effect on Hover */
.project-file::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.project-file:hover::after {
    opacity: 1;
}

/* Typing Animation for Code */
.project-file:hover .code-line {
    animation: typing 1.5s steps(30, end) forwards;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--terminal-green);
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}
/* Code Samples Section */
.code-samples {
    padding: 100px 0;
    background-color: rgba(10, 25, 47, 0.3);
}

.samples-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 15px;
    flex-wrap: wrap;
}

.sample-tab {
    padding: 12px 25px;
    background-color: transparent;
    border: 2px solid var(--yellow);
    color: var(--text);
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.sample-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--yellow);
    transition: left 0.3s;
    z-index: -1;
}

.sample-tab:hover::before,
.sample-tab.active::before {
    left: 0;
}

.sample-tab:hover,
.sample-tab.active {
    color: var(--black);
}

.sample-pane {
    display: none;
    animation: fadeIn 0.5s;
}

.sample-pane.active {
    display: block;
}

.sample-container {
    background-color: rgba(10, 25, 47, 0.5);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sample-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.sample-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--yellow);
}
.sample-header {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    text-align: center;
}

.sample-preview {
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    position: relative;
}

/* Background Images for Each Form */
.login-preview {
    background-image: url('../images/login.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-preview {
    background-image: url('../images/form.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

.checkout-preview {
    background-image: url('../images/check.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Overlay for Background Images */
.sample-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Login Form Styles - Blue Theme */
.login-content {
    width: 400px;
    background: rgba(0, 50, 100, 0.2);
    border: 2px solid rgba(0, 150, 255, 0.3);
    backdrop-filter: blur(13px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px 35px;
    position: relative;
    z-index: 2;
}

.login-content h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    color: #4dabf7;
    margin-bottom: 20px;
}

.login-content .input-box {
    position: relative;
    width: 100%;
    height: 55px;
    margin: 30px 0;
}

.login-content .input-box input {
    background: transparent;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 150, 255, 0.3);
    border-radius: 30px;
    padding: 20px 45px 20px 20px;
    font-size: 16px;
    color: #ffffff;
}

.login-content input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.login-content .input-box i {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #4dabf7;
}

.login-content .remember {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -16px 0 16px;
}

.login-content .remember label {
    display: flex;
    align-items: center;
    color: #ffffff;
}

.login-content .remember label input {
    margin-right: 8px;
}

.login-content .remember a {
    color: #4dabf7;
    text-decoration: none;
}

.login-content .remember a:hover {
    text-decoration: underline;
}

.login-content .btnn {
    display: inline-block;
    background: #4dabf7;
    color: #ffffff;
    width: 100%;
    border-radius: 30px;
    font-size: 16px;
    height: 45px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    margin-bottom: 30px;
    margin-top: 16px;
    border: none;
    font-family: 'Orbitron', sans-serif;
}

.login-content .social-login {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.login-content .social-login a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.login-content .social-login a:hover {
    color: #4dabf7;
}

/* Contact Form Styles - Green Theme */
.contact-content {
    width: 100%;
    max-width: 500px;
    background: rgba(4, 8, 3, 0.31);
    border: 2px solid rgba(0, 0, 0, 0.474);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.contact-content .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-content .form-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #4ade80;
    margin-bottom: 10px;
}

.contact-content .form-header p {
    color: #ffffff;
    opacity: 0.8;
}

.contact-content .input-group {
    position: relative;
    margin-bottom: 30px;
}

.contact-content .input-group input,
.contact-content .input-group textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 200, 100, 0.3);
    color: #ffffff;
    font-size: 16px;
    outline: none;
    resize: none;
}

.contact-content .input-group input:focus,
.contact-content .input-group textarea:focus {
    border-bottom-color: #4ade80;
}

.contact-content .input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4ade80;
    transition: width 0.3s;
}

.contact-content .input-group input:focus ~ .input-border,
.contact-content .input-group textarea:focus ~ .input-border {
    width: 100%;
}

.contact-content .submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: #4ade80;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-content .submit-btn:hover {
    background: #22c55e;
    transform: translateY(-3px);
}

/* Checkout Form Styles - Purple Theme */
.checkout-content {
    width: 100%;
    max-width: 800px;
    background: rgba(80, 0, 120, 0.2);
    border: 2px solid rgba(150, 0, 200, 0.3);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.checkout-content .checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-content .checkout-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #c084fc;
}

.checkout-content .security-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4ade80;
}

.checkout-content .billing-section,
.checkout-content .payment-section {
    margin-bottom: 40px;
}

.checkout-content .billing-section h3,
.checkout-content .payment-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.checkout-content .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkout-content .form-group {
    margin-bottom: 20px;
}

.checkout-content .form-group.full-width {
    grid-column: 1 / -1;
}

.checkout-content .form-group input {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    outline: none;
}

.checkout-content .form-group input:focus {
    border-color: #c084fc;
}

.checkout-content .payment-methods {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.checkout-content .payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-content .payment-method input[type="radio"] {
    display: none;
}

.checkout-content .payment-method label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    cursor: pointer;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s;
}

.checkout-content .payment-method input[type="radio"]:checked + label {
    border-color: #c084fc;
    background-color: rgba(192, 132, 252, 0.1);
}

.checkout-content .order-summary {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
}

.checkout-content .order-summary h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.checkout-content .summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #ffffff;
}

.checkout-content .summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: bold;
    color: #c084fc;
}

.checkout-content .place-order-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: #c084fc;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.checkout-content .place-order-btn:hover {
    background: #a855f7;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-content,
    .contact-content,
    .checkout-content {
        width: 100%;
        max-width: 350px;
    }
    
    .checkout-content .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkout-content .checkout-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .sample-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}