/* Lunacht Games - Card Layout Styles */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.navbar {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 0.8rem 0;
}

.navbar-brand img {
    height: 40px;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    color: #333 !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: all 0.3s;
    margin: 0 0.3rem;
}

.nav-link:hover {
    background: #ff6b35;
    color: white !important;
}

.nav-link.active {
    background: #ff6b35;
    color: white !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        padding: 0.8rem 1rem !important;
        display: block;
    }
}

.hero-section {
    background: url('images/banner.png') center/cover;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin: 0rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

.hero-left {
    flex: 1;
    text-align: left;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-logo {
    display: inline-block;
    margin-bottom: 2rem;
    padding: 0.5rem;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-logo img {
    width: 180px;
    height: auto;
    display: block;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 10px rgba(0,0,0,0.8),
        0 0 20px rgba(0,0,0,0.6),
        0 0 30px rgba(255,107,53,0.5);
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 
        0 1px 5px rgba(0,0,0,0.8),
        0 0 10px rgba(0,0,0,0.5);
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.95);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 500;
    text-shadow: 
        0 1px 5px rgba(0,0,0,0.8),
        0 0 10px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hero-btn {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.store-btn {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.store-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.store-btn img {
    width: 170px;
    height: auto;
    display: block;
}

.play-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}

.play-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255,107,53,0.5);
    color: white;
}

.hero-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,107,53,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.section-title {
    text-align: center;
    margin: 3rem 0 2rem;
    font-size: 2.2rem;
    color: #2c3e50;
    font-weight: 700;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.info-card h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card p {
    color: #666;
    line-height: 1.8;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid #3498db;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-card .icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #888;
    font-size: 0.9rem;
}

.game-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    display: flex;
    flex-wrap: wrap;
}

.game-card .text-part {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
}

.game-card .image-part {
    flex: 1;
    min-width: 300px;
}

.game-card .image-part img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card h3 {
    color: #e74c3c;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.game-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.game-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(234,88,12,0.1));
    border-radius: 25px;
    border: 1px solid rgba(255,107,53,0.3);
    transition: all 0.3s;
}

.game-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
    background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(234,88,12,0.15));
}

.feature-icon {
    font-size: 1.2rem;
    color: #ff6b35;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.btn-custom {
    background: linear-gradient(90deg, #ff6b35, #ea580c);
    color: white;
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-custom:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,107,53,0.4);
}

.gallery-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
	margin:10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.gallery-card img {
    width: 100%;
    height: 100%;
	
    object-fit: cover;
}

.gallery-card .caption {
    padding: 1rem;
    text-align: center;
}

.gallery-card .caption h5 {
    color: #2c3e50;
    margin: 0;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.contact-info-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s;
    min-width: 200px;
    flex: 1;
}

.contact-item:hover {
    background: #e8f4fd;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(52,152,219,0.2);
}

.contact-icon {
    font-size: 2rem;
    color: #3498db;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f4fd, #d4eaf7);
    border-radius: 50%;
}

.contact-item div {
    display: flex;
    flex-direction: column;
}

.contact-label {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.contact-value {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
}

footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
}

footer p {
    margin-bottom: 1rem;
}

footer a {
    color: #ff6b35;
    margin: 0 1rem;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Contact Us Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-section {
    padding: 4rem 2rem;
}

.contact-page-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-page-info {
    list-style: none;
    padding: 0;
}

.contact-page-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255,107,53,0.05);
    border-radius: 10px;
}

.contact-page-info .icon {
    font-size: 1.5rem;
    color: #ff6b35;
    flex-shrink: 0;
}

.contact-page-info .label {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-page-info .value {
    color: #666;
}

.contact-page-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-page-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-page-form input,
.contact-page-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    box-sizing: border-box;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 15px rgba(255,107,53,0.2);
}

.contact-page-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-page-form .error {
    border-color: #e74c3c !important;
}

.contact-page-form .error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: block;
}

.btn-submit {
    background: linear-gradient(90deg, #ff6b35, #ea580c);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,107,53,0.4);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    background: rgba(46,204,113,0.1);
    border: 1px solid rgba(46,204,113,0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    color: #27ae60;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-page-card {
        padding: 1.5rem;
    }
}

/* Store Page Styles */
.store-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.store-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.store-section {
    padding: 4rem 2rem;
}

.coins-intro {
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,165,0,0.1));
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255,215,0,0.3);
}

.coins-intro h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.coins-intro ul {
    list-style: none;
    padding: 0;
}

.coins-intro li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #333;
    border-bottom: 1px dashed rgb(255 130 20);
}

.coins-intro li:last-child {
    border-bottom: none;
}

.coins-intro li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6000;
    font-weight: bold;
}

.goods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.goods-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.goods-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.2);
    border-color: #ff6b35;
}

.goods-card.selected {
    border-color: #ff6b35;
    background: rgba(255,107,53,0.05);
}

.goods-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.goods-card h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.goods-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.order-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.order-card h3 {
    margin-bottom: 2rem;
    color: #333;
}

.order-form .form-group {
    margin-bottom: 1.5rem;
}

.order-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.order-form input,
.order-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    box-sizing: border-box;
}

.order-form input:focus,
.order-form select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 15px rgba(255,107,53,0.2);
}

.order-form .error {
    border-color: #e74c3c !important;
}

.order-form .error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: block;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-option {
    flex: 1;
    min-width: 150px;
    padding: 0.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
}

.payment-option:hover {
    border-color: #ff6b35;
    background: rgba(255,107,53,0.05);
}

.payment-option.selected {
    border-color: #ff6b35;
    background: rgba(255,107,53,0.1);
}

.payment-option img {
    width: auto;
    height: 50px;
}

.payment-option span {
    font-weight: 500;
    color: #333;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.terms-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
}

.terms-checkbox label {
    font-weight: 400;
    color: #666;
    margin-bottom: 0;
}

.terms-checkbox a {
    color: #ff6b35;
    text-decoration: none;
}

.terms-checkbox a:hover {
    text-decoration: underline;
}

.btn-submit-order {
    background: linear-gradient(90deg, #ff6b35, #ea580c);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit-order:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,107,53,0.4);
}

.btn-submit-order:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.error-message-box {
    background: rgba(231,76,60,0.1);
    border: 1px solid rgba(231,76,60,0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    color: #c0392b;
    text-align: center;
}

@media (max-width: 768px) {
    .store-hero h1 {
        font-size: 2rem;
    }
    
    .coins-intro,
    .order-card {
        padding: 1.5rem;
    }
    
    .payment-methods {
        flex-direction: column;
    }
}

/* Confirm Page Styles */
.confirm-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.confirm-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.confirm-hero p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.confirm-section {
    padding: 4rem 2rem;
    background: #f5f5f5;
}

.confirm-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.confirm-header {
    background: linear-gradient(135deg, #ff6b35, #ea580c);
    padding: 2rem;
    color: white;
}

.confirm-header h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.order-code {
    font-size: 0.9rem;
    opacity: 0.9;
    font-family: 'Courier New', monospace;
}

.confirm-details {
    padding: 2rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #666;
    flex: 1;
}

.detail-value {
    flex: 1;
    text-align: right;
    color: #333;
    font-weight: 500;
}

.payment-value {
    color: #ff6b35;
}

.total-row {
    background: rgba(255,107,53,0.05);
    padding: 1.5rem;
    margin: 1rem -2rem -2rem -2rem;
    border-radius: 0 0 20px 20px;
}

.total-row .detail-label {
    font-size: 1.2rem;
    color: #333;
}

.total-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
}

.confirm-actions {
    padding: 2rem;
}

.terms-confirm {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.terms-confirm input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
}

.terms-confirm label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

.btn-back {
    background: #e0e0e0;
    color: #333;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-right: 1rem;
}

.btn-back:hover {
    background: #ccc;
    transform: translateY(-2px);
}

.btn-confirm-payment {
    background: linear-gradient(90deg, #ff6b35, #ea580c);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-confirm-payment:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,107,53,0.4);
}

.btn-confirm-payment:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .confirm-hero h1 {
        font-size: 2rem;
    }
    
    .confirm-card {
        margin: 0 1rem;
    }
    
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .detail-value {
        text-align: left;
    }
    
    .btn-back,
    .btn-confirm-payment {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Payfinish Page Styles */
.payfinish-section {
    padding: 6rem 2rem;
    background: #f5f5f5;
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.payfinish-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.payfinish-card.success {
    border-top: 4px solid #27ae60;
}

.payfinish-card.failed {
    border-top: 4px solid #e74c3c;
}

.status-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payfinish-card.success .status-icon {
    background: rgba(39,174,96,0.1);
}

.payfinish-card.failed .status-icon {
    background: rgba(231,76,60,0.1);
}

.success-icon {
    font-size: 4rem;
    color: #27ae60;
}

.failed-icon {
    font-size: 4rem;
    color: #e74c3c;
}

.payfinish-card h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.status-message {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.order-summary {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.order-summary h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    color: #666;
    font-weight: 500;
}

.summary-value {
    color: #333;
    font-weight: 600;
}

.payfinish-card .actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(90deg, #ff6b35, #ea580c);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,107,53,0.4);
}

.btn-secondary {
    background: #e0e0e0;
    color: #333;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #ccc;
    transform: translateY(-2px);
}

/* Error Page Styles */
.error-section {
    padding: 6rem 2rem;
    background: #f5f5f5;
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-top: 4px solid #e74c3c;
}

.error-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(231,76,60,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-symbol {
    font-size: 4rem;
    color: #e74c3c;
    font-weight: bold;
}

.error-code {
    font-size: 5rem;
    font-weight: 800;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.error-card h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.error-message {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-details {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.error-details p {
    margin-bottom: 1rem;
    color: #333;
    font-weight: 500;
}

.error-details ul {
    margin: 0;
    padding-left: 1.5rem;
}

.error-details li {
    padding: 0.5rem 0;
    color: #666;
}

.error-card .actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .payfinish-card,
    .error-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .payfinish-card h1,
    .error-card h1 {
        font-size: 1.5rem;
    }
    
    .error-code {
        font-size: 3.5rem;
    }
    
    .payfinish-card .actions,
    .error-card .actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}
