* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --accent-primary: #FFFFFF;
    --accent-secondary: #9CA3AF;
    --text-primary: #FFFFFF;
    --text-secondary: #E5E7EB;
    --text-muted: #9CA3AF;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --card-bg: rgba(255, 255, 255, 0.02);
    --success-color: #22C55E;
    --error-color: #EF4444;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-size: 14px;
    height: 100%;
}

html {
    height: 100%;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.5);
}

/* Container */
.container {
    margin: 0 auto;
    padding: 0 5%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-subtle);
    flex-shrink: 0;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 0 -5%;
    padding: 24px 5%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.dot {
    color: #9CA3AF;
}

.nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
}

.nav-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Main Content */
.main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 100px 0;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 8px;
    backdrop-filter: blur(2px);
    border: 1px solid var(--border-subtle);
}

.hero-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-transform: lowercase;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.6;
    text-transform: lowercase;
}

.thestup-highlight {
    color: var(--accent-primary);
    font-weight: 700;
    font-style: italic;
}

/* Email Section */
.email-section {
    margin-top: 30px;
}

.email-link {
    color: #888888;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.email-link:hover {
    color: var(--accent-primary);
}

/* Footer */
.footer {
    padding: 20px 0;
    border-top: 1px solid var(--border-subtle);
    flex-shrink: 0;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 0 -5%;
    padding: 20px 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-links a {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--text-secondary);
}

/* Notification Toast */
.notification {
    position: fixed;
    bottom: 75px;
    right: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 16px 20px;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    display: none;
    opacity: 0;
    align-items: flex-start;
    gap: 12px;
    transform: translateY(10px);
    pointer-events: none;
}

.notification.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.notification.success {
    border-left: 3px solid var(--success-color);
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.05) 0%, var(--bg-secondary) 100%);
}

.notification.error {
    border-left: 3px solid var(--error-color);
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.05) 0%, var(--bg-secondary) 100%);
}

.notification-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification.success .notification-icon {
    color: var(--success-color);
}

.notification.error .notification-icon {
    color: var(--error-color);
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.notification-message {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.notification-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    color: var(--text-primary);
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 30px;
    max-width: 560px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 80%;
    overflow-y: auto;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: absolute;
    top: 16px;
    right: 16px;
}

.modal-close:hover {
    color: var(--text-primary);
    background: var(--border-subtle);
}

.modal-back {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: absolute;
    top: 16px;
    right: 46px;
}

.modal-back:hover {
    color: var(--text-primary);
    background: var(--border-subtle);
}

.modal-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Services Modal */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card {
    padding: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.service-icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.service-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.service-description {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.service-cta {
    margin-top: 12px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-cta:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Domains Modal */
.domains-grid {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}

.domain-card {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    padding: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    transition: all 0.2s ease;
    gap: 16px;
}

.domain-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.domain-name {
    font-weight: 500;
    color: var(--text-primary);
    max-width: 100px;
}

.domain-price {
    color: var(--text-muted);
    font-size: 13px;
    text-align: left;
    min-width: 50px;
}

.domain-buy {
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.domain-buy:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Websites Modal */
.websites-grid {
    display: grid;
    gap: 16px;
    margin: 20px 0;
}

.website-card {
    padding: 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.website-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.website-preview {
    width: 100%;
    height: 180px;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.website-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: top;
}

.preview-link {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.preview-link:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.website-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.website-icon {
    font-size: 16px;
    color: var(--accent-secondary);
}

.website-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.website-description {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}

.website-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.website-inquire {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.website-inquire:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* Contact Modal */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    text-align: left;
    margin-bottom: 12px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 10px 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.05);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%239CA3AF' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 40px;
}

.form-select option {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 8px;
    border: 0.5px solid var(--border-subtle);
}

.submit-btn {
    padding: 10px 20px;
    background: var(--accent-primary);
    border: none;
    border-radius: 4px;
    color: var(--bg-primary);
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background: var(--text-secondary);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Legal Modal */
.legal-content {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 13px;
}

.legal-content h3 {
    color: var(--text-primary);
    margin: 16px 0 8px 0;
    font-size: 14px;
}

.legal-content p {
    margin-bottom: 12px;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.legal-content li {
    margin-bottom: 6px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .notification {
        right: 16px;
        left: 16px;
        max-width: none;
        bottom: 80px;
        transform: translateY(10px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    /* Mobilde header ve footer padding'ini ayarla */
    .header,
    .footer {
        margin: 0 -5%;
        padding: 20px 5%;
    }
    
    /* Mobile nav buttons - smaller size */
    .nav-btn {
        width: 34px;
        height: 34px;
        padding: 8px;
    }
    
    .nav-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .nav {
        gap: 10px;
    }
    
    /* Adjust main content for mobile */
    .main {
        margin: 80px 0;
    }
    
    .hero {
        padding: 20px;
    }
    
    .modal-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    /* Even smaller nav buttons for very small screens */
    .nav-btn {
        width: 32px;
        height: 32px;
        padding: 6px;
    }
    
    .nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .nav {
        gap: 10px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .hero-title {
        font-size: 18px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .notification {
        padding: 14px 16px;
        bottom: 70px;
    }
    
    .notification-title {
        font-size: 13px;
    }
    
    .notification-message {
        font-size: 12px;
    }
    
    .notification-icon {
        font-size: 18px;
        width: 18px;
        height: 18px;
    }
}