/* Genel stil ayarları*/
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #0b151a, #08120e);
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.container {
    padding: 20px;
    background: linear-gradient(to bottom, #0b151a, #08120e);
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    width: 95%;
    animation: fadeIn 1.2s ease-in-out;
    max-height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
    margin-top:10px;
    margin-bottom:10px;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.header {
    text-align: center;
    margin-bottom: 25px;
}

.header h1 {
    color: rgb(220, 251, 110);
    font-size: 3em;
    margin: 0;
    font-weight: 600;
}

.header p {
    font-size: 1.2em;
    color: #8b8a8a;
}

.price-tag {
    font-size: 2em;
    text-align: center;
    margin-top: 20px;
    color: #ff4500;
    font-weight: bold;
    animation: pulse 1.5s infinite;
}

.highlight {
    background: linear-gradient(to right, #335755, #1b5737);
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgb(0 255 154 / 40%);
    color: #fdfdfd;
    font-weight: 700;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.purchase-info {
    text-align: center;
    margin-bottom: 30px;
}

.purchase-btn {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    color: #000;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.2em;
    transition: all 0.4s ease;
    box-shadow: 0 10px 15px rgb(201 242 50 / 30%);
}

.purchase-btn:hover {
    /* transform: translateY(-5px) scale(1.05); */
  box-shadow: 0 15px 30px rgb(167 251 51 / 50%);
}
.odeme{display:none}
.contact-form {
    display: none;
    margin-top: 30px;
    animation: slideIn 0.8s ease-in-out;
}

@keyframes slideIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #c4c4c4;
}

.contact-form h2 {
    color: #c4c4c4;
}

.contact-form p {
    color: #c4c4c4;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 9px;
    margin-top: 5px;
    border: 2px solid #bfde58;
    border-radius: 10px;
    box-sizing: border-box;
    transition: border-color 0.4s ease;
    background: #dcfb6e;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #ff416c;
    outline: none;
    box-shadow: 0 0 10px rgba(255, 65, 108, 0.2);
}

.submit-btn {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 1.1em;
    transition: all 0.4s ease;
    box-shadow: 0 10px 15px rgba(0, 176, 255, 0.3);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.submit-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 176, 255, 0.5);
}

.footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9em;
    color: #8b8a8a;
}